0byt3m1n1
Path:
/
data
/
48
/
4
/
79
/
110
/
4731762
/
meta
/
5605824
/
mysql.backup
/
[
Home
]
File: 1_03f1377_0.mysqlcluster11.bak.sql
-- MySQL dump 10.13 Distrib 5.6.24, for Linux (x86_64) -- -- Host: mysqlcluster11 Database: 1_03f1377_0 -- ------------------------------------------------------ -- Server version 5.6.48-88.0-56-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_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_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=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2018-02-06 17:51:13','2018-02-06 17:51:13','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_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_options` -- DROP TABLE IF EXISTS `wp_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_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=InnoDB AUTO_INCREMENT=1028 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,'siteurl','http://gwendowment.org/wordpress1','yes'),(2,'home','http://gwendowment.org/wordpress1','yes'),(3,'blogname','wordpress1','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','jeremypducheny@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:143:{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:46:\"category/(.+?)/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:55:\"index.php?category_name=$matches[1]&flpaged=$matches[2]\";s:43:\"tag/([^/]+)/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:45:\"index.php?tag=$matches[1]&flpaged=$matches[2]\";s:42:\"([0-9]{4})/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:46:\"index.php?year=$matches[1]&flpaged=$matches[2]\";s:55:\"([0-9]{4})/([0-9]{1,2})/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:67:\"index.php?year=$matches[1]&monthnum=$matches[2]&flpaged=$matches[3]\";s:68:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:83:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&flpaged=$matches[4]\";s:46:\"author/([^/]+)/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:53:\"index.php?author_name=$matches[1]&flpaged=$matches[2]\";s:40:\"([0-9]+)/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:43:\"index.php?p=$matches[1]&flpaged=$matches[2]\";s:39:\"(.?.+?)/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:50:\"index.php?pagename=$matches[1]&flpaged=$matches[2]\";s:37:\"(.+?)/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:46:\"index.php?name=$matches[1]&flpaged=$matches[2]\";s:31:\"paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:30:\"index.php?&flpaged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:47:\"fl-builder-template/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"fl-builder-template/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"fl-builder-template/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"fl-builder-template/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"fl-builder-template/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"fl-builder-template/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"fl-builder-template/([^/]+)/embed/?$\";s:52:\"index.php?fl-builder-template=$matches[1]&embed=true\";s:40:\"fl-builder-template/([^/]+)/trackback/?$\";s:46:\"index.php?fl-builder-template=$matches[1]&tb=1\";s:48:\"fl-builder-template/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?fl-builder-template=$matches[1]&paged=$matches[2]\";s:55:\"fl-builder-template/([^/]+)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?fl-builder-template=$matches[1]&cpage=$matches[2]\";s:44:\"fl-builder-template/([^/]+)(?:/([0-9]+))?/?$\";s:58:\"index.php?fl-builder-template=$matches[1]&page=$matches[2]\";s:36:\"fl-builder-template/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"fl-builder-template/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"fl-builder-template/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"fl-builder-template/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"fl-builder-template/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"fl-builder-template/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:69:\"fl-builder-template-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?fl-builder-template-category=$matches[1]&feed=$matches[2]\";s:64:\"fl-builder-template-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?fl-builder-template-category=$matches[1]&feed=$matches[2]\";s:45:\"fl-builder-template-category/([^/]+)/embed/?$\";s:61:\"index.php?fl-builder-template-category=$matches[1]&embed=true\";s:57:\"fl-builder-template-category/([^/]+)/page/?([0-9]{1,})/?$\";s:68:\"index.php?fl-builder-template-category=$matches[1]&paged=$matches[2]\";s:39:\"fl-builder-template-category/([^/]+)/?$\";s:50:\"index.php?fl-builder-template-category=$matches[1]\";s:65:\"fl-builder-template-type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?fl-builder-template-type=$matches[1]&feed=$matches[2]\";s:60:\"fl-builder-template-type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?fl-builder-template-type=$matches[1]&feed=$matches[2]\";s:41:\"fl-builder-template-type/([^/]+)/embed/?$\";s:57:\"index.php?fl-builder-template-type=$matches[1]&embed=true\";s:53:\"fl-builder-template-type/([^/]+)/page/?([0-9]{1,})/?$\";s:64:\"index.php?fl-builder-template-type=$matches[1]&paged=$matches[2]\";s:35:\"fl-builder-template-type/([^/]+)/?$\";s:46:\"index.php?fl-builder-template-type=$matches[1]\";s:43:\"fl-theme-layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"fl-theme-layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"fl-theme-layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"fl-theme-layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"fl-theme-layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"fl-theme-layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"fl-theme-layout/([^/]+)/embed/?$\";s:48:\"index.php?fl-theme-layout=$matches[1]&embed=true\";s:36:\"fl-theme-layout/([^/]+)/trackback/?$\";s:42:\"index.php?fl-theme-layout=$matches[1]&tb=1\";s:44:\"fl-theme-layout/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?fl-theme-layout=$matches[1]&paged=$matches[2]\";s:51:\"fl-theme-layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?fl-theme-layout=$matches[1]&cpage=$matches[2]\";s:40:\"fl-theme-layout/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?fl-theme-layout=$matches[1]&page=$matches[2]\";s:32:\"fl-theme-layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"fl-theme-layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"fl-theme-layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"fl-theme-layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"fl-theme-layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"fl-theme-layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:5:{i:0;s:19:\"akismet/akismet.php\";i:1;s:24:\"bb-plugin/fl-builder.php\";i:2;s:37:\"bb-theme-builder/bb-theme-builder.php\";i:3;s:45:\"easy-paypal-donation/easy-paypal-donation.php\";i:4;s:23:\"wp-smushit/wp-smush.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:112:\"\\\\WDP\\DFS\\30\\0\\5\\3\\3049195350\\user\\sites\\5605824.site\\www\\wordpress1/wp-content/themes/twentyseventeen/style.css\";i:1;s:0:\"\";}','no'),(40,'template','bb-theme','yes'),(41,'stylesheet','bb-theme','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','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:1:{s:45:\"easy-paypal-donation/easy-paypal-donation.php\";a:2:{i:0;s:21:\"wpedon_wpeasydonation\";i:1;s:16:\"wpedon_uninstall\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','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_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(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:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"blog-sidebar\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:10:\"footer-col\";a:0:{}s:12:\"footer-col-2\";a:0:{}s:12:\"footer-col-3\";a:0:{}s:12:\"footer-col-4\";a:0:{}s:17:\"after-post-widget\";a:0:{}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_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'cron','a:6:{i:1581800787;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1581832275;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:1581870668;a:1:{s:30:\"fl_builder_notifications_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1581875082;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:1581878870;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(110,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1575317641;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'),(124,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:24:\"jeremypducheny@gmail.com\";s:7:\"version\";s:6:\"4.9.13\";s:9:\"timestamp\";i:1576275708;}','no'),(141,'can_compress_scripts','1','no'),(147,'recently_activated','a:0:{}','yes'),(152,'seed_csp4_initial_version','5.1.0','no'),(153,'seed_csp4_version','5.1.0','no'),(154,'seed_csp4_settings_content','a:9:{s:6:\"status\";s:1:\"0\";s:4:\"logo\";s:80:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwendowmentlogo.png\";s:8:\"headline\";s:0:\"\";s:11:\"description\";s:0:\"\";s:13:\"footer_credit\";s:1:\"0\";s:7:\"favicon\";s:0:\"\";s:9:\"seo_title\";s:0:\"\";s:15:\"seo_description\";s:0:\"\";s:12:\"ga_analytics\";s:0:\"\";}','yes'),(155,'seed_csp4_settings_design','a:13:{s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:75:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/background.png\";s:8:\"bg_cover\";a:1:{i:0;s:1:\"1\";}s:7:\"bg_size\";s:5:\"cover\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:8:\"left top\";s:13:\"bg_attahcment\";s:5:\"fixed\";s:9:\"max_width\";s:0:\"\";s:10:\"text_color\";s:7:\"#666666\";s:10:\"link_color\";s:7:\"#27AE60\";s:14:\"headline_color\";s:7:\"#444444\";s:9:\"text_font\";s:6:\"_arial\";s:10:\"custom_css\";s:0:\"\";}','yes'),(156,'seed_csp4_settings_advanced','a:2:{s:14:\"header_scripts\";s:0:\"\";s:14:\"footer_scripts\";s:0:\"\";}','yes'),(180,'_fl_builder_version','2.3.1.3','no'),(184,'theme_mods_bb-theme','a:293:{s:15:\"fl-layout-width\";s:10:\"full-width\";s:16:\"fl-content-width\";s:4:\"1020\";s:17:\"fl-layout-spacing\";s:1:\"0\";s:21:\"fl-layout-shadow-size\";s:1:\"0\";s:22:\"fl-layout-shadow-color\";s:7:\"#d9d9d9\";s:16:\"fl-scroll-to-top\";s:7:\"disable\";s:12:\"fl-framework\";s:4:\"base\";s:10:\"fl-awesome\";s:3:\"fa4\";s:16:\"fl-body-bg-color\";s:7:\"#f2f2f2\";s:16:\"fl-body-bg-image\";s:0:\"\";s:17:\"fl-body-bg-repeat\";s:9:\"no-repeat\";s:19:\"fl-body-bg-position\";s:10:\"center top\";s:21:\"fl-body-bg-attachment\";s:6:\"scroll\";s:15:\"fl-body-bg-size\";s:4:\"auto\";s:9:\"fl-accent\";s:7:\"#428bca\";s:15:\"fl-accent-hover\";s:7:\"#428bca\";s:16:\"fl-heading-style\";s:0:\"\";s:19:\"fl-title-text-color\";s:7:\"#333333\";s:20:\"fl-title-font-family\";s:9:\"Helvetica\";s:20:\"fl-title-font-weight\";s:3:\"400\";s:20:\"fl-title-font-format\";s:4:\"none\";s:21:\"fl-title-heading-line\";s:0:\"\";s:21:\"fl-heading-text-color\";s:7:\"#333333\";s:22:\"fl-heading-font-family\";s:9:\"Helvetica\";s:22:\"fl-heading-font-weight\";s:3:\"400\";s:22:\"fl-heading-font-format\";s:4:\"none\";s:21:\"fl-heading-font-line1\";s:0:\"\";s:15:\"fl-h1-font-size\";s:2:\"36\";s:22:\"fl-h1-font-size_medium\";s:2:\"36\";s:22:\"fl-h1-font-size_mobile\";s:2:\"36\";s:17:\"fl-h1-line-height\";s:3:\"1.4\";s:24:\"fl-h1-line-height_medium\";s:3:\"1.4\";s:24:\"fl-h1-line-height_mobile\";s:3:\"1.4\";s:20:\"fl-h1-letter-spacing\";s:1:\"0\";s:27:\"fl-h1-letter-spacing_medium\";s:1:\"0\";s:27:\"fl-h1-letter-spacing_mobile\";s:1:\"0\";s:10:\"fl-h1-line\";s:0:\"\";s:15:\"fl-h2-font-size\";s:2:\"30\";s:17:\"fl-h2-line-height\";s:3:\"1.4\";s:20:\"fl-h2-letter-spacing\";s:1:\"0\";s:10:\"fl-h2-line\";s:0:\"\";s:15:\"fl-h3-font-size\";s:2:\"24\";s:17:\"fl-h3-line-height\";s:3:\"1.4\";s:20:\"fl-h3-letter-spacing\";s:1:\"0\";s:10:\"fl-h3-line\";s:0:\"\";s:15:\"fl-h4-font-size\";s:2:\"18\";s:17:\"fl-h4-line-height\";s:3:\"1.4\";s:20:\"fl-h4-letter-spacing\";s:1:\"0\";s:10:\"fl-h4-line\";s:0:\"\";s:15:\"fl-h5-font-size\";s:2:\"14\";s:17:\"fl-h5-line-height\";s:3:\"1.4\";s:20:\"fl-h5-letter-spacing\";s:1:\"0\";s:10:\"fl-h5-line\";s:0:\"\";s:15:\"fl-h6-font-size\";s:2:\"12\";s:17:\"fl-h6-line-height\";s:3:\"1.4\";s:20:\"fl-h6-letter-spacing\";s:1:\"0\";s:18:\"fl-body-text-color\";s:7:\"#808080\";s:19:\"fl-body-font-family\";s:9:\"Helvetica\";s:19:\"fl-body-font-weight\";s:3:\"400\";s:17:\"fl-body-font-size\";s:2:\"14\";s:19:\"fl-body-line-height\";s:4:\"1.45\";s:15:\"fl-button-style\";s:0:\"\";s:20:\"fl-button-color-line\";s:0:\"\";s:15:\"fl-button-color\";s:7:\"#808080\";s:21:\"fl-button-hover-color\";s:4:\"#555\";s:26:\"fl-button-background-color\";s:4:\"#fff\";s:32:\"fl-button-background-hover-color\";s:4:\"#eee\";s:19:\"fl-button-font-line\";s:0:\"\";s:21:\"fl-button-font-family\";s:9:\"Helvetica\";s:21:\"fl-button-font-weight\";s:3:\"400\";s:19:\"fl-button-font-size\";s:4:\"auto\";s:21:\"fl-button-line-height\";s:3:\"1.2\";s:24:\"fl-button-text-transform\";s:4:\"none\";s:21:\"fl-button-border-line\";s:0:\"\";s:22:\"fl-button-border-style\";s:4:\"none\";s:22:\"fl-button-border-width\";s:1:\"0\";s:22:\"fl-button-border-color\";s:11:\"transparent\";s:23:\"fl-button-border-radius\";i:0;s:21:\"fl-social-icons-color\";s:4:\"mono\";s:18:\"fl-social-facebook\";s:0:\"\";s:17:\"fl-social-twitter\";s:0:\"\";s:16:\"fl-social-google\";s:0:\"\";s:18:\"fl-social-snapchat\";s:0:\"\";s:18:\"fl-social-linkedin\";s:0:\"\";s:14:\"fl-social-yelp\";s:0:\"\";s:14:\"fl-social-xing\";s:0:\"\";s:19:\"fl-social-pinterest\";s:0:\"\";s:16:\"fl-social-tumblr\";s:0:\"\";s:15:\"fl-social-vimeo\";s:0:\"\";s:17:\"fl-social-youtube\";s:0:\"\";s:16:\"fl-social-flickr\";s:0:\"\";s:19:\"fl-social-instagram\";s:0:\"\";s:15:\"fl-social-skype\";s:0:\"\";s:18:\"fl-social-dribbble\";s:0:\"\";s:15:\"fl-social-500px\";s:0:\"\";s:17:\"fl-social-blogger\";s:0:\"\";s:16:\"fl-social-github\";s:0:\"\";s:13:\"fl-social-rss\";s:0:\"\";s:15:\"fl-social-email\";s:0:\"\";s:16:\"fl-topbar-layout\";s:4:\"none\";s:15:\"fl-topbar-line1\";s:0:\"\";s:21:\"fl-topbar-col1-layout\";s:4:\"text\";s:19:\"fl-topbar-col1-text\";s:0:\"\";s:15:\"fl-topbar-line2\";s:0:\"\";s:21:\"fl-topbar-col2-layout\";s:4:\"menu\";s:19:\"fl-topbar-col2-text\";s:0:\"\";s:18:\"fl-topbar-bg-color\";s:7:\"#ffffff\";s:20:\"fl-topbar-bg-opacity\";s:3:\"100\";s:21:\"fl-topbar-bg-gradient\";s:1:\"0\";s:18:\"fl-topbar-bg-image\";s:0:\"\";s:19:\"fl-topbar-bg-repeat\";s:9:\"no-repeat\";s:21:\"fl-topbar-bg-position\";s:10:\"center top\";s:23:\"fl-topbar-bg-attachment\";s:6:\"scroll\";s:17:\"fl-topbar-bg-size\";s:4:\"auto\";s:20:\"fl-topbar-text-color\";s:7:\"#000000\";s:20:\"fl-topbar-link-color\";s:7:\"#428bca\";s:21:\"fl-topbar-hover-color\";s:7:\"#428bca\";s:16:\"fl-header-layout\";s:5:\"right\";s:19:\"fl-inline-logo-side\";s:5:\"right\";s:24:\"fl-vertical-header-width\";s:3:\"230\";s:17:\"fl-header-padding\";s:2:\"30\";s:15:\"fl-fixed-header\";s:6:\"fadein\";s:27:\"fl-hide-until-scroll-header\";s:7:\"disable\";s:18:\"fl-scroll-distance\";s:3:\"200\";s:15:\"fl-header-line1\";s:0:\"\";s:24:\"fl-header-content-layout\";s:11:\"social-text\";s:22:\"fl-header-content-text\";s:23:\"Call Us! 1-800-555-5555\";s:18:\"fl-header-bg-color\";s:7:\"#ffffff\";s:20:\"fl-header-bg-opacity\";s:3:\"100\";s:18:\"fl-nav-shadow-size\";s:1:\"4\";s:19:\"fl-nav-shadow-color\";s:7:\"#cecece\";s:21:\"fl-header-bg-gradient\";s:1:\"0\";s:18:\"fl-header-bg-image\";s:75:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/background.png\";s:19:\"fl-header-bg-repeat\";s:8:\"repeat-x\";s:21:\"fl-header-bg-position\";s:10:\"center top\";s:23:\"fl-header-bg-attachment\";s:6:\"scroll\";s:17:\"fl-header-bg-size\";s:5:\"cover\";s:20:\"fl-header-text-color\";s:7:\"#000000\";s:20:\"fl-header-link-color\";s:7:\"#428bca\";s:21:\"fl-header-hover-color\";s:7:\"#428bca\";s:12:\"fl-logo-type\";s:4:\"text\";s:13:\"fl-logo-image\";s:0:\"\";s:20:\"fl-logo-image-retina\";s:0:\"\";s:21:\"fl-sticky-header-logo\";s:0:\"\";s:28:\"fl-sticky-header-logo-retina\";s:0:\"\";s:21:\"fl-mobile-header-logo\";s:0:\"\";s:12:\"fl-logo-text\";s:10:\"wordpress1\";s:16:\"fl-theme-tagline\";b:0;s:19:\"fl-logo-font-family\";s:9:\"Helvetica\";s:19:\"fl-logo-font-weight\";s:3:\"400\";s:17:\"fl-logo-font-size\";s:2:\"30\";s:26:\"fl-header-logo-top-spacing\";s:2:\"50\";s:19:\"fl-nav-item-spacing\";s:2:\"15\";s:23:\"fl-nav-menu-top-spacing\";s:2:\"30\";s:17:\"fl-nav-item-align\";s:4:\"left\";s:20:\"fl-header-nav-search\";s:7:\"visible\";s:20:\"fl-mobile-nav-toggle\";s:6:\"button\";s:17:\"fl-nav-breakpoint\";s:6:\"mobile\";s:20:\"fl-nav-mobile-layout\";s:8:\"dropdown\";s:29:\"fl-nav-mobile-layout-position\";s:4:\"left\";s:21:\"fl-nav-submenu-toggle\";s:7:\"disable\";s:20:\"fl-nav-collapse-menu\";s:1:\"0\";s:24:\"fl-nav-submenu-indicator\";s:7:\"disable\";s:15:\"fl-nav-bg-color\";s:7:\"#ffffff\";s:17:\"fl-nav-bg-opacity\";s:3:\"100\";s:18:\"fl-nav-bg-gradient\";s:1:\"0\";s:15:\"fl-nav-bg-image\";s:0:\"\";s:16:\"fl-nav-bg-repeat\";s:9:\"no-repeat\";s:18:\"fl-nav-bg-position\";s:10:\"center top\";s:20:\"fl-nav-bg-attachment\";s:6:\"scroll\";s:14:\"fl-nav-bg-size\";s:4:\"auto\";s:17:\"fl-nav-link-color\";s:7:\"#428bca\";s:18:\"fl-nav-hover-color\";s:7:\"#428bca\";s:18:\"fl-nav-font-family\";s:9:\"Helvetica\";s:18:\"fl-nav-font-weight\";s:3:\"400\";s:18:\"fl-nav-font-format\";s:4:\"none\";s:16:\"fl-nav-font-size\";s:2:\"14\";s:19:\"fl-content-bg-color\";s:7:\"#ffffff\";s:21:\"fl-content-bg-opacity\";s:3:\"100\";s:19:\"fl-content-bg-image\";s:0:\"\";s:20:\"fl-content-bg-repeat\";s:9:\"no-repeat\";s:22:\"fl-content-bg-position\";s:10:\"center top\";s:24:\"fl-content-bg-attachment\";s:6:\"scroll\";s:18:\"fl-content-bg-size\";s:4:\"auto\";s:14:\"fl-blog-layout\";s:13:\"sidebar-right\";s:20:\"fl-blog-sidebar-size\";s:1:\"4\";s:27:\"fl-blog-custom-sidebar-size\";s:2:\"25\";s:23:\"fl-blog-sidebar-display\";s:7:\"desktop\";s:24:\"fl-blog-sidebar-location\";s:26:\"single,blog,search,archive\";s:35:\"fl-blog-sidebar-location-post-types\";s:3:\"all\";s:13:\"fl-blog-line1\";s:0:\"\";s:19:\"fl-blog-post-author\";s:7:\"visible\";s:17:\"fl-blog-post-date\";s:7:\"visible\";s:21:\"fl-blog-comment-count\";s:7:\"visible\";s:20:\"fl-archive-show-full\";s:1:\"0\";s:24:\"fl-archive-readmore-text\";s:9:\"Read More\";s:22:\"fl-archive-show-thumbs\";s:6:\"beside\";s:21:\"fl-archive-thumb-size\";s:5:\"large\";s:20:\"fl-posts-show-thumbs\";s:0:\"\";s:19:\"fl-posts-thumb-size\";s:9:\"thumbnail\";s:18:\"fl-posts-show-cats\";s:7:\"visible\";s:18:\"fl-posts-show-tags\";s:7:\"visible\";s:17:\"fl-posts-show-nav\";s:6:\"hidden\";s:18:\"fl-post-author-box\";s:6:\"hidden\";s:13:\"fl-woo-layout\";s:10:\"no-sidebar\";s:19:\"fl-woo-sidebar-size\";s:1:\"4\";s:26:\"fl-woo-custom-sidebar-size\";s:2:\"25\";s:22:\"fl-woo-sidebar-display\";s:7:\"desktop\";s:23:\"fl-woo-sidebar-location\";s:11:\"single,shop\";s:12:\"fl-woo-line1\";s:0:\"\";s:14:\"fl-woo-columns\";s:1:\"4\";s:12:\"fl-woo-line2\";s:0:\"\";s:14:\"fl-woo-gallery\";s:7:\"enabled\";s:12:\"fl-woo-line3\";s:0:\"\";s:18:\"fl-woo-cart-button\";s:6:\"hidden\";s:12:\"fl-woo-line4\";s:0:\"\";s:10:\"fl-woo-css\";s:7:\"enabled\";s:11:\"fl-lightbox\";s:7:\"enabled\";s:25:\"fl-footer-widgets-display\";s:3:\"all\";s:26:\"fl-footer-widgets-bg-color\";s:7:\"#ffffff\";s:28:\"fl-footer-widgets-bg-opacity\";s:3:\"100\";s:29:\"fl-footer-widgets-bg-gradient\";s:1:\"0\";s:26:\"fl-footer-widgets-bg-image\";s:0:\"\";s:27:\"fl-footer-widgets-bg-repeat\";s:9:\"no-repeat\";s:29:\"fl-footer-widgets-bg-position\";s:10:\"center top\";s:31:\"fl-footer-widgets-bg-attachment\";s:6:\"scroll\";s:25:\"fl-footer-widgets-bg-size\";s:4:\"auto\";s:28:\"fl-footer-widgets-text-color\";s:7:\"#000000\";s:28:\"fl-footer-widgets-link-color\";s:7:\"#428bca\";s:29:\"fl-footer-widgets-hover-color\";s:7:\"#428bca\";s:16:\"fl-footer-layout\";s:5:\"1-col\";s:15:\"fl-footer-line1\";s:0:\"\";s:21:\"fl-footer-col1-layout\";s:4:\"text\";s:19:\"fl-footer-col1-text\";s:0:\"\";s:15:\"fl-footer-line2\";s:0:\"\";s:21:\"fl-footer-col2-layout\";s:4:\"text\";s:19:\"fl-footer-col2-text\";s:78:\"1-800-555-5555 • <a href=\"mailto:info@mydomain.com\">info@mydomain.com</a>\";s:18:\"fl-footer-bg-color\";s:7:\"#ffffff\";s:20:\"fl-footer-bg-opacity\";s:3:\"100\";s:21:\"fl-footer-bg-gradient\";s:1:\"0\";s:18:\"fl-footer-bg-image\";s:0:\"\";s:19:\"fl-footer-bg-repeat\";s:9:\"no-repeat\";s:21:\"fl-footer-bg-position\";s:10:\"center top\";s:23:\"fl-footer-bg-attachment\";s:6:\"scroll\";s:17:\"fl-footer-bg-size\";s:4:\"auto\";s:20:\"fl-footer-text-color\";s:7:\"#000000\";s:20:\"fl-footer-link-color\";s:7:\"#428bca\";s:21:\"fl-footer-hover-color\";s:7:\"#428bca\";s:25:\"fl-footer-parallax-effect\";s:7:\"disable\";s:11:\"fl-css-code\";s:0:\"\";s:10:\"fl-js-code\";s:0:\"\";s:12:\"fl-head-code\";s:0:\"\";s:14:\"fl-header-code\";s:0:\"\";s:14:\"fl-footer-code\";s:0:\"\";s:10:\"fl-favicon\";s:0:\"\";s:19:\"fl-apple-touch-icon\";s:0:\"\";s:17:\"fl-nav-text-color\";s:7:\"#000000\";s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:3:{s:6:\"header\";i:2;s:3:\"bar\";i:0;s:6:\"footer\";i:0;}s:24:\"fl-body-font-size_medium\";s:2:\"14\";s:24:\"fl-body-font-size_mobile\";s:2:\"14\";s:26:\"fl-body-line-height_medium\";s:4:\"1.45\";s:26:\"fl-body-line-height_mobile\";s:4:\"1.45\";s:22:\"fl-h2-font-size_medium\";s:2:\"30\";s:22:\"fl-h2-font-size_mobile\";s:2:\"30\";s:24:\"fl-h2-line-height_medium\";s:3:\"1.4\";s:24:\"fl-h2-line-height_mobile\";s:3:\"1.4\";s:27:\"fl-h2-letter-spacing_medium\";s:1:\"0\";s:27:\"fl-h2-letter-spacing_mobile\";s:1:\"0\";s:22:\"fl-h3-font-size_medium\";s:2:\"24\";s:22:\"fl-h3-font-size_mobile\";s:2:\"24\";s:24:\"fl-h3-line-height_medium\";s:3:\"1.4\";s:24:\"fl-h3-line-height_mobile\";s:3:\"1.4\";s:27:\"fl-h3-letter-spacing_medium\";s:1:\"0\";s:27:\"fl-h3-letter-spacing_mobile\";s:1:\"0\";s:22:\"fl-h4-font-size_medium\";s:2:\"18\";s:22:\"fl-h4-font-size_mobile\";s:2:\"18\";s:24:\"fl-h4-line-height_medium\";s:3:\"1.4\";s:24:\"fl-h4-line-height_mobile\";s:3:\"1.4\";s:27:\"fl-h4-letter-spacing_medium\";s:1:\"0\";s:27:\"fl-h4-letter-spacing_mobile\";s:1:\"0\";s:22:\"fl-h5-font-size_medium\";s:2:\"14\";s:22:\"fl-h5-font-size_mobile\";s:2:\"14\";s:24:\"fl-h5-line-height_medium\";s:3:\"1.4\";s:24:\"fl-h5-line-height_mobile\";s:3:\"1.4\";s:27:\"fl-h5-letter-spacing_medium\";s:1:\"0\";s:27:\"fl-h5-letter-spacing_mobile\";s:1:\"0\";s:22:\"fl-h6-font-size_medium\";s:2:\"12\";s:22:\"fl-h6-font-size_mobile\";s:2:\"12\";s:24:\"fl-h6-line-height_medium\";s:3:\"1.4\";s:24:\"fl-h6-line-height_mobile\";s:3:\"1.4\";s:27:\"fl-h6-letter-spacing_medium\";s:1:\"0\";s:27:\"fl-h6-letter-spacing_mobile\";s:1:\"0\";}','yes'),(185,'fl_theme_css_key-skin','5e3d95ae0878d','yes'),(186,'_fl_automator_version','1.7.5.1','yes'),(189,'fl_theme_css_key-editor','5de571586a7f0','yes'),(190,'fl_theme_css_key-customizer','5de5715121266','yes'),(192,'current_theme','Beaver Builder Theme','yes'),(193,'theme_switched','','yes'),(194,'_fl_theme_builder_assets_expire','1583707610','yes'),(196,'fl_builder_recent_fonts','a:11:{s:10:\"Yesteryear\";s:3:\"400\";s:20:\"Monsieur La Doulaise\";s:3:\"400\";s:6:\"Roboto\";s:3:\"400\";s:10:\"Alex Brush\";s:3:\"400\";s:8:\"Rosarivo\";s:3:\"400\";s:6:\"Sumana\";s:3:\"700\";s:15:\"Source Sans Pro\";s:3:\"400\";s:9:\"Cormorant\";s:3:\"400\";s:17:\"Libre Baskerville\";s:3:\"400\";s:5:\"Arial\";s:3:\"400\";s:10:\"Montserrat\";s:7:\"regular\";}','yes'),(197,'fl_notifications','a:3:{s:4:\"read\";b:1;s:8:\"checksum\";a:10:{i:518303;i:-1213476398;i:455558;i:1112446375;i:434899;i:569945551;i:430933;i:-1345531489;i:423877;i:1545241705;i:421774;i:-1207153278;i:416381;i:-623041062;i:408945;i:-1326681638;i:404849;i:308115498;i:375859;i:1690867192;}s:4:\"data\";s:20403:\"[{\"id\":518303,\"date\":\"2019-11-29T00:32:39\",\"date_gmt\":\"2019-11-29T08:32:39\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&p=518303\"},\"modified\":\"2019-11-29T00:32:39\",\"modified_gmt\":\"2019-11-29T08:32:39\",\"slug\":\"autumn-update-black-friday-and-beaver-builder-2-3\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=autumn-update-black-friday-and-beaver-builder-2-3\",\"title\":{\"rendered\":\"Autumn Update – Black Friday and Beaver Builder 2.3\"},\"content\":{\"rendered\":\"<p><img class=\\\"alignnone wp-image-516371\\\" src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/11\\/1_-L8ZwY-1024x448.jpg\\\" alt=\\\"\\\" width=\\\"318\\\" height=\\\"139\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/11\\/1_-L8ZwY-1024x448.jpg 1024w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/11\\/1_-L8ZwY-300x131.jpg 300w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/11\\/1_-L8ZwY-768x336.jpg 768w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/11\\/1_-L8ZwY-400x175.jpg 400w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/11\\/1_-L8ZwY.jpg 1464w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/p>\\n<p>Hey all! We hope you\'re doing great. It\'s been a little while since our last update post.\\u00a0For this post, I wanted to share some of our internal news, product updates, future plans, and annual Black Friday sale. Click to read more…<\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/autumn-update-black-friday-and-beaver-builder-2-3\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/518303\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=518303\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}},{\"id\":455558,\"date\":\"2019-04-30T15:21:14\",\"date_gmt\":\"2019-04-30T22:21:14\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&p=455558\"},\"modified\":\"2019-04-30T15:21:14\",\"modified_gmt\":\"2019-04-30T22:21:14\",\"slug\":\"spring-update-cherry-blossoms-new-hires-and-new-products\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=spring-update-cherry-blossoms-new-hires-and-new-products\",\"title\":{\"rendered\":\"Spring Update \\u2013 Cherry Blossoms, New Hires, and New Products\"},\"content\":{\"rendered\":\"\\n<div class=\\\"wp-block-image\\\"><figure class=\\\"aligncenter\\\"><img src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/04\\/spring-update-notification.jpg\\\" alt=\\\"\\\" class=\\\"wp-image-455560\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/04\\/spring-update-notification.jpg 318w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/04\\/spring-update-notification-300x131.jpg 300w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/figure><\\/div>\\n\\n\\n\\n<p>Hey all! Happy Spring. The Beaver Builder team continues to grow and I\\u2019m excited to introduce two new members. We\\u2019re also growing our product line, and we have recently announced a very early version of a new project we\\u2019ve been working on, Assistant.<\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/spring-update-cherry-blossoms-new-hires-and-new-products\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/455558\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=455558\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}},{\"id\":434899,\"date\":\"2019-02-22T00:04:57\",\"date_gmt\":\"2019-02-22T08:04:57\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&p=434899\"},\"modified\":\"2019-02-22T00:05:00\",\"modified_gmt\":\"2019-02-22T08:05:00\",\"slug\":\"3-reasons-why-wordpress-agencies-love-beaver-builder\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=3-reasons-why-wordpress-agencies-love-beaver-builder\",\"title\":{\"rendered\":\"3 Reasons Why WordPress Agencies Love Beaver Builder\"},\"content\":{\"rendered\":\"\\n<div class=\\\"wp-block-image\\\"><figure class=\\\"aligncenter\\\"><img src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/02\\/why-agencies-love-bb-notification.jpg\\\" alt=\\\"\\\" class=\\\"wp-image-434901\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/02\\/why-agencies-love-bb-notification.jpg 318w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/02\\/why-agencies-love-bb-notification-300x131.jpg 300w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/figure><\\/div>\\n\\n\\n\\n<p>Ever wonder why the biggest companies and agencies in the WordPress space choose Beaver Builder? Companies like Crowd Favorite, GoDaddy, and WP Engine? In this <g class=\\\"gr_ gr_44 gr-alert gr_gramm gr_inline_cards gr_run_anim Punctuation only-ins replaceWithoutSep\\\" id=\\\"44\\\" data-gr-id=\\\"44\\\">article<\\/g> we discuss three reasons why agencies \\u2764\\ufe0f Beaver Builder!<br><\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/3-reasons-why-wordpress-agencies-love-beaver-builder\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/434899\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=434899\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}},{\"id\":430933,\"date\":\"2019-02-08T12:10:12\",\"date_gmt\":\"2019-02-08T20:10:12\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&p=430933\"},\"modified\":\"2019-02-08T12:10:15\",\"modified_gmt\":\"2019-02-08T20:10:15\",\"slug\":\"winter-update-blocks-in-beaver-builder-future-plans-and-more\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=winter-update-blocks-in-beaver-builder-future-plans-and-more\",\"title\":{\"rendered\":\"Winter Update \\u2013 Blocks in Beaver Builder, Future Plans, and More\"},\"content\":{\"rendered\":\"\\n<div class=\\\"wp-block-image\\\"><figure class=\\\"aligncenter\\\"><img src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/02\\/winter-update-notification.jpg\\\" alt=\\\"\\\" class=\\\"wp-image-430941\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/02\\/winter-update-notification.jpg 318w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/02\\/winter-update-notification-300x131.jpg 300w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/figure><\\/div>\\n\\n\\n\\n<p>Our latest update post is live. We have news about future plans for Beaver Builder and an upcoming module overhaul! Our plugs and footnotes section is well stocked this time around. We\'ve been jumping on a ton of podcasts recently talking about everything from the future of\\u00a0Beaver Builder to digital nomadism! Let\'s get into it\\u2026<\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/winter-update-blocks-future-plans-and-more\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/430933\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=430933\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}},{\"id\":423877,\"date\":\"2019-01-16T15:51:14\",\"date_gmt\":\"2019-01-16T23:51:14\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&p=423877\"},\"modified\":\"2019-01-16T15:51:14\",\"modified_gmt\":\"2019-01-16T23:51:14\",\"slug\":\"difference-between-gutenberg-and-page-builders-like-beaver-builder-elementor-and-divi\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=difference-between-gutenberg-and-page-builders-like-beaver-builder-elementor-and-divi\",\"title\":{\"rendered\":\"Difference between Gutenberg and Page Builders like Beaver Builder, Elementor, and Divi\"},\"content\":{\"rendered\":\"<p><img class=\\\"aligncenter size-full wp-image-423885\\\" src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/01\\/gutenberg-vs-bb-notification.jpg\\\" alt=\\\"Difference between Gutenberg and Beaver Builder\\\" width=\\\"318\\\" height=\\\"139\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/01\\/gutenberg-vs-bb-notification.jpg 318w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/01\\/gutenberg-vs-bb-notification-300x131.jpg 300w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/p>\\n<p>This question has been coming up a lot! In this post, we explain how page builders differ from Gutenberg and the best scenarios to understand when to use one or the other. This might be old news to\\u00a0Beaver Builder users like you, but if you have a client or a friend that is trying to grok the differences this is the post for them.<\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/difference-between-gutenberg-and-page-builders-like-beaver-builder-elementor-and-divi\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/423877\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=423877\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}},{\"id\":421774,\"date\":\"2019-01-09T10:34:00\",\"date_gmt\":\"2019-01-09T18:34:00\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&p=421774\"},\"modified\":\"2019-01-09T10:34:00\",\"modified_gmt\":\"2019-01-09T18:34:00\",\"slug\":\"mental-health-stress-and-burnout-an-interview-with-dr-sherry-walling\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=mental-health-stress-and-burnout-an-interview-with-dr-sherry-walling\",\"title\":{\"rendered\":\"Mental Health, Stress, and Burnout \\u2013 An interview with Dr. Sherry Walling\"},\"content\":{\"rendered\":\"<p><img class=\\\"aligncenter size-full wp-image-421777\\\" src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/01\\/sherry-walling-notification.jpg\\\" alt=\\\"Mental health, stress, and burnout\\\" width=\\\"318\\\" height=\\\"139\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/01\\/sherry-walling-notification.jpg 318w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/01\\/sherry-walling-notification-300x131.jpg 300w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/p>\\n<p>We met Dr. Sherry Walling several years ago at an event and were extremely impressed with her candid discussions about mental health in the entrepreneurial space. I am thrilled that she agreed to work with us on an interview-style blog post discussing some practical ways to improve one\'s mental and emotional wellbeing.<\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/mental-health-stress-and-burnout-an-interview-with-dr-sherry-walling\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/421774\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=421774\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}},{\"id\":416381,\"date\":\"2018-12-14T09:02:44\",\"date_gmt\":\"2018-12-14T17:02:44\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&p=416381\"},\"modified\":\"2018-12-14T09:02:44\",\"modified_gmt\":\"2018-12-14T17:02:44\",\"slug\":\"thoughts-on-gutenberg-and-a-wordcamp-us-recap\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=thoughts-on-gutenberg-and-a-wordcamp-us-recap\",\"title\":{\"rendered\":\"Thoughts on Gutenberg and a WordCamp US Recap\"},\"content\":{\"rendered\":\"<p><img class=\\\"aligncenter size-full wp-image-416382\\\" src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/12\\/wcus-notification.jpg\\\" alt=\\\"\\\" width=\\\"318\\\" height=\\\"139\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/12\\/wcus-notification.jpg 318w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/12\\/wcus-notification-300x131.jpg 300w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/p>\\n<p>A few of us from the Beaver Builder team had the opportunity to attend WordCamp US 2018 in Nashville, Tennessee, this week. I\'d like to try something new this year and write down a few thoughts about the event and share photos.<\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/thoughts-on-gutenberg-and-a-wordcamp-us-recap\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/416381\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=416381\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}},{\"id\":408945,\"date\":\"2018-11-23T15:19:24\",\"date_gmt\":\"2018-11-23T23:19:24\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&p=408945\"},\"modified\":\"2018-11-23T15:20:13\",\"modified_gmt\":\"2018-11-23T23:20:13\",\"slug\":\"black-friday-cyber-monday-25-off-everything\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=black-friday-cyber-monday-25-off-everything\",\"title\":{\"rendered\":\"Black Friday \\/ Cyber Monday \\u2013 25% Off Everything\"},\"content\":{\"rendered\":\"<p><img class=\\\"aligncenter size-full wp-image-408954\\\" src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/11\\/black-friday-notification.jpg\\\" alt=\\\"\\\" width=\\\"318\\\" height=\\\"139\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/11\\/black-friday-notification.jpg 318w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/11\\/black-friday-notification-300x131.jpg 300w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/p>\\n<p>Happy Turkey Week! We\'re excited to continue our tradition of offering up a major discount on\\u00a0Beaver Builder for Black Friday and Cyber Monday 2018. Don\'t miss out on this limited time offer.<\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/black-friday-cyber-monday-2018-25-off-everything\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/408945\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=408945\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}},{\"id\":404849,\"date\":\"2018-11-08T13:34:29\",\"date_gmt\":\"2018-11-08T21:34:29\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&p=404849\"},\"modified\":\"2018-11-08T13:34:29\",\"modified_gmt\":\"2018-11-08T21:34:29\",\"slug\":\"autumn-update-addressing-all-the-elephants\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=autumn-update-addressing-all-the-elephants\",\"title\":{\"rendered\":\"Autumn Update \\u2013 Addressing all the Elephants\"},\"content\":{\"rendered\":\"<p><img class=\\\"aligncenter size-full wp-image-404853\\\" src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/11\\/autumn-update-notification.jpg\\\" alt=\\\"\\\" width=\\\"318\\\" height=\\\"139\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/11\\/autumn-update-notification.jpg 318w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/11\\/autumn-update-notification-300x131.jpg 300w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/p>\\n<p>Why, hello there! It\'s an exciting time in the WordPress world with Gutenberg on the verge of going live. We have a bunch of exciting news to share and new features to announce. Find out more in our Autumn update.<\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/autumn-update-addressing-all-the-elephants\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/404849\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=404849\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}},{\"id\":375859,\"date\":\"2018-07-11T12:30:14\",\"date_gmt\":\"2018-07-11T19:30:14\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&p=375859\"},\"modified\":\"2018-07-11T12:30:14\",\"modified_gmt\":\"2018-07-11T19:30:14\",\"slug\":\"summer-update-sneak-peaks-new-features-and-more\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=summer-update-sneak-peaks-new-features-and-more\",\"title\":{\"rendered\":\"Summer Update \\u2013 Sneak Peaks, New Features, and More\"},\"content\":{\"rendered\":\"<p><img class=\\\"aligncenter size-full wp-image-375874\\\" src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/07\\/bb-summer-2018.jpg\\\" alt=\\\"\\\" width=\\\"318\\\" height=\\\"139\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/07\\/bb-summer-2018.jpg 318w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/07\\/bb-summer-2018-300x131.jpg 300w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/p>\\n<p>Hope you\'re having a great summer! We have updates and alpha versions across the board\\u2014Page Builder, Beaver Themer, and the BB Theme are all getting some exciting new features and enhancements.<\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/summer-update-sneak-peaks-new-features-and-more\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/375859\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=375859\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}}]\";}','yes'),(199,'_fl_builder_color_presets','a:5:{i:0;s:6:\"ffd700\";i:1;s:19:\"rgba(0,51,102,0.91)\";i:2;s:6:\"4b5887\";i:3;s:6:\"cccccc\";i:4;s:6:\"231d00\";}','yes'),(317,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(325,'category_children','a:0:{}','yes'),(732,'fl-builder-template-category_children','a:0:{}','yes'),(883,'fl_themes_subscription_email','7a62702e79766e7a74406c617275706871636c7a72657277','no'),(887,'_fl_builder_update_info','a:2:{s:4:\"from\";s:7:\"2.2.4.3\";s:2:\"to\";s:7:\"2.3.1.3\";}','no'),(910,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(914,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:5:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.3.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-5.3.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.3.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.3.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.3.2\";s:7:\"version\";s:5:\"5.3.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.3.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-5.3.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.3.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.3.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.3.2\";s:7:\"version\";s:5:\"5.3.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.5.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-5.2.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.5-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.2.5\";s:7:\"version\";s:5:\"5.2.5\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.1.4.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-5.1.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.1.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.1.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.1.4\";s:7:\"version\";s:5:\"5.1.4\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.0.8.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.0.8.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.0.8-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.0.8-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.0.8\";s:7:\"version\";s:5:\"5.0.8\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1581794897;s:15:\"version_checked\";s:6:\"4.9.13\";s:12:\"translations\";a:0:{}}','no'),(915,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1581794900;s:7:\"checked\";a:4:{s:8:\"bb-theme\";s:7:\"1.7.5.1\";s:13:\"twentyfifteen\";s:3:\"2.5\";s:15:\"twentyseventeen\";s:3:\"2.2\";s:13:\"twentysixteen\";s:3:\"2.0\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(929,'wpedon_settingsoptions','a:12:{s:8:\"currency\";i:25;s:8:\"language\";i:3;s:4:\"mode\";i:2;s:4:\"size\";i:6;s:5:\"opens\";i:2;s:11:\"no_shipping\";i:1;s:7:\"no_note\";i:1;s:11:\"liveaccount\";s:18:\"tr@gwendowment.org\";s:14:\"sandboxaccount\";s:0:\"\";s:7:\"image_1\";s:312:\"Notice: Undefined index: image_1 in \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\WDP\\\\\\\\\\\\\\\\DFS\\\\\\\\\\\\\\\\30\\\\\\\\\\\\\\\\0\\\\\\\\\\\\\\\\5\\\\\\\\\\\\\\\\3\\\\\\\\\\\\\\\\3049195350\\\\\\\\\\\\\\\\user\\\\\\\\\\\\\\\\sites\\\\\\\\\\\\\\\\5605824.site\\\\\\\\\\\\\\\\www\\\\\\\\\\\\\\\\wordpress1\\\\\\\\\\\\\\\\wp-content\\\\\\\\\\\\\\\\plugins\\\\\\\\\\\\\\\\easy-paypal-donation\\\\\\\\\\\\\\\\includes\\\\\\\\\\\\\\\\private_settings.php on line 241\";s:6:\"cancel\";s:0:\"\";s:6:\"return\";s:0:\"\";}','yes'),(930,'widget_wpedon_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(931,'wpedon_notice_shown','true','yes'),(957,'_site_transient_timeout_browser_05f578eb3fa9f908f5d74ef7bf6207a5','1582302663','no'),(958,'_site_transient_browser_05f578eb3fa9f908f5d74ef7bf6207a5','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"79.0.3945.130\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(979,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1581794900;s:7:\"checked\";a:5:{s:19:\"akismet/akismet.php\";s:5:\"4.1.3\";s:24:\"bb-plugin/fl-builder.php\";s:7:\"2.3.1.3\";s:37:\"bb-theme-builder/bb-theme-builder.php\";s:5:\"1.2.5\";s:45:\"easy-paypal-donation/easy-paypal-donation.php\";s:5:\"1.2.9\";s:23:\"wp-smushit/wp-smush.php\";s:5:\"3.4.2\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:45:\"easy-paypal-donation/easy-paypal-donation.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:34:\"w.org/plugins/easy-paypal-donation\";s:4:\"slug\";s:20:\"easy-paypal-donation\";s:6:\"plugin\";s:45:\"easy-paypal-donation/easy-paypal-donation.php\";s:11:\"new_version\";s:5:\"1.2.9\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/easy-paypal-donation/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/easy-paypal-donation.1.2.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/easy-paypal-donation/assets/icon-256x256.png?rev=1311328\";s:2:\"1x\";s:73:\"https://ps.w.org/easy-paypal-donation/assets/icon-128x128.png?rev=1311328\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/easy-paypal-donation/assets/banner-772x250.png?rev=1311328\";}s:11:\"banners_rtl\";a:0:{}}s:23:\"wp-smushit/wp-smush.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/wp-smushit\";s:4:\"slug\";s:10:\"wp-smushit\";s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:11:\"new_version\";s:5:\"3.4.2\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-smushit/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/wp-smushit.3.4.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-256x256.jpg?rev=2132251\";s:2:\"1x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-128x128.jpg?rev=2132250\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wp-smushit/assets/banner-1544x500.png?rev=1863697\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-smushit/assets/banner-772x250.png?rev=1863697\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(980,'wp-smush-settings','a:20:{s:4:\"auto\";b:1;s:5:\"lossy\";b:0;s:10:\"strip_exif\";b:1;s:6:\"resize\";b:0;s:9:\"detection\";b:0;s:8:\"original\";b:0;s:6:\"backup\";b:0;s:10:\"png_to_jpg\";b:0;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;s:9:\"gutenberg\";b:0;s:10:\"js_builder\";b:0;s:3:\"cdn\";b:0;s:11:\"auto_resize\";b:0;s:4:\"webp\";b:1;s:5:\"usage\";b:0;s:17:\"accessible_colors\";b:0;s:9:\"keep_data\";b:1;s:9:\"lazy_load\";b:1;s:17:\"background_images\";b:1;}','yes'),(981,'wp-smush-install-type','existing','no'),(982,'wp-smush-version','3.4.2','no'),(983,'wdev-frash','a:3:{s:7:\"plugins\";a:1:{s:23:\"wp-smushit/wp-smush.php\";i:1581700863;}s:5:\"queue\";a:2:{s:32:\"7de3619981caadc55f30a002bfb299f6\";a:4:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:5:\"email\";s:7:\"show_at\";i:1581700863;s:6:\"sticky\";b:1;}s:32:\"fc50097023d0d34c5a66f6cddcf77694\";a:3:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1582305663;}}s:4:\"done\";a:0:{}}','no'),(986,'smush_global_stats','a:9:{s:11:\"size_before\";i:3907717;s:10:\"size_after\";i:3464418;s:7:\"percent\";d:11.300000000000001;s:5:\"human\";s:8:\"432.9 KB\";s:5:\"bytes\";i:443299;s:12:\"total_images\";i:91;s:12:\"resize_count\";i:0;s:14:\"resize_savings\";i:0;s:18:\"conversion_savings\";i:0;}','no'),(987,'dir_smush_stats','a:2:{s:9:\"dir_smush\";a:2:{s:5:\"total\";i:0;s:9:\"optimised\";i:0;}s:14:\"combined_stats\";a:0:{}}','no'),(988,'wp-smush-lazy_load','a:7:{s:6:\"format\";a:5:{s:4:\"jpeg\";b:1;s:3:\"png\";b:1;s:3:\"gif\";b:1;s:3:\"svg\";b:1;s:6:\"iframe\";b:1;}s:6:\"output\";a:4:{s:7:\"content\";b:1;s:7:\"widgets\";b:1;s:10:\"thumbnails\";b:1;s:9:\"gravatars\";b:1;}s:9:\"animation\";a:4:{s:8:\"selected\";s:6:\"fadein\";s:6:\"fadein\";a:2:{s:8:\"duration\";i:400;s:5:\"delay\";i:0;}s:7:\"spinner\";a:2:{s:8:\"selected\";i:1;s:6:\"custom\";a:0:{}}s:11:\"placeholder\";a:3:{s:8:\"selected\";i:1;s:6:\"custom\";a:0:{}s:5:\"color\";s:7:\"#F3F3F3\";}}s:7:\"include\";a:7:{s:9:\"frontpage\";b:1;s:4:\"home\";b:1;s:4:\"page\";b:1;s:6:\"single\";b:1;s:7:\"archive\";b:1;s:8:\"category\";b:1;s:3:\"tag\";b:1;}s:13:\"exclude-pages\";a:0:{}s:15:\"exclude-classes\";a:0:{}s:6:\"footer\";b:1;}','yes'),(989,'skip-smush-setup','1','yes'),(1024,'_site_transient_timeout_theme_roots','1581796699','no'),(1025,'_site_transient_theme_roots','a:4:{s:8:\"bb-theme\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(1027,'_transient_doing_cron','1581810016.3966119289398193359375','yes'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_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=InnoDB AUTO_INCREMENT=1008 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_postmeta` -- LOCK TABLES `wp_postmeta` WRITE; /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,4,'_wp_attached_file','2019/12/gwendowmentlogo.png'),(3,4,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:2478;s:4:\"file\";s:27:\"2019/12/gwendowmentlogo.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"gwendowmentlogo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"gwendowmentlogo-242x300.png\";s:5:\"width\";i:242;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"gwendowmentlogo-768x952.png\";s:5:\"width\";i:768;s:6:\"height\";i:952;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"gwendowmentlogo-826x1024.png\";s:5:\"width\";i:826;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"twentyseventeen-featured-image\";a:4:{s:4:\"file\";s:29:\"gwendowmentlogo-2000x1200.png\";s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:27:\"gwendowmentlogo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(4,5,'_wp_attached_file','2019/12/background.png'),(5,5,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:124;s:6:\"height\";i:74;s:4:\"file\";s:22:\"2019/12/background.png\";s:5:\"sizes\";a:1:{s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:21:\"background-100x74.png\";s:5:\"width\";i:100;s:6:\"height\";i:74;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:{}}}'),(12,9,'_wp_attached_file','2019/12/A_Girl_Writing.jpg'),(13,9,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:395;s:6:\"height\";i:309;s:4:\"file\";s:26:\"2019/12/A_Girl_Writing.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"A_Girl_Writing-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:\"A_Girl_Writing-300x235.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:26:\"A_Girl_Writing-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14,10,'_wp_attached_file','2019/12/A_Girl_Writing_480x376.jpg'),(15,10,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:376;s:4:\"file\";s:34:\"2019/12/A_Girl_Writing_480x376.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"A_Girl_Writing_480x376-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:\"A_Girl_Writing_480x376-300x235.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:34:\"A_Girl_Writing_480x376-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16,11,'_wp_attached_file','2019/12/background.jpg'),(17,11,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:31;s:6:\"height\";i:32;s:4:\"file\";s:22:\"2019/12/background.jpg\";s:5:\"sizes\";a:0:{}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:{}}}'),(18,12,'_wp_attached_file','2019/12/Biglin_Brothers_Racing.jpg'),(19,12,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:421;s:4:\"file\";s:34:\"2019/12/Biglin_Brothers_Racing.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Biglin_Brothers_Racing-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:\"Biglin_Brothers_Racing-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:34:\"Biglin_Brothers_Racing-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20,13,'_wp_attached_file','2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746.jpg'),(21,13,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1145;s:6:\"height\";i:642;s:4:\"file\";s:58:\"2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"Biglin_Brothers_Racing_1148x294-e1580148148746-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:58:\"Biglin_Brothers_Racing_1148x294-e1580148148746-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"Biglin_Brothers_Racing_1148x294-e1580148148746-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"Biglin_Brothers_Racing_1148x294-e1580148148746-1024x574.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:43:\"Biglin_Brothers_Racing_1148x294-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22,14,'_wp_attached_file','2019/12/Browne_Henriette_-_A_Girl_Writing.jpg'),(23,14,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3198;s:6:\"height\";i:2509;s:4:\"file\";s:45:\"2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Browne_Henriette_-_A_Girl_Writing-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:45:\"Browne_Henriette_-_A_Girl_Writing-300x235.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Browne_Henriette_-_A_Girl_Writing-768x603.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:603;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Browne_Henriette_-_A_Girl_Writing-1024x803.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:803;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"twentyseventeen-featured-image\";a:4:{s:4:\"file\";s:47:\"Browne_Henriette_-_A_Girl_Writing-2000x1200.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:45:\"Browne_Henriette_-_A_Girl_Writing-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24,15,'_wp_attached_file','2019/12/Eli_Broad.jpg'),(25,15,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:236;s:4:\"file\";s:21:\"2019/12/Eli_Broad.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Eli_Broad-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:\"Eli_Broad-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:21:\"Eli_Broad-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26,16,'_wp_attached_file','2019/12/George_Washington.jpg'),(27,16,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:180;s:4:\"file\";s:29:\"2019/12/George_Washington.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"George_Washington-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:29:\"George_Washington-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:29:\"George_Washington-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28,17,'_wp_attached_file','2019/12/GW_resignation_390x255.jpg'),(29,17,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:390;s:6:\"height\";i:255;s:4:\"file\";s:34:\"2019/12/GW_resignation_390x255.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"GW_resignation_390x255-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:\"GW_resignation_390x255-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:34:\"GW_resignation_390x255-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30,18,'_wp_attached_file','2019/12/GW_resignation_450x294.jpg'),(31,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:294;s:4:\"file\";s:34:\"2019/12/GW_resignation_450x294.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"GW_resignation_450x294-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:\"GW_resignation_450x294-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:34:\"GW_resignation_450x294-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(32,19,'_wp_attached_file','2019/12/GW_resignation_540x353.jpg'),(33,19,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:353;s:4:\"file\";s:34:\"2019/12/GW_resignation_540x353.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"GW_resignation_540x353-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:\"GW_resignation_540x353-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:34:\"GW_resignation_540x353-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(34,20,'_wp_attached_file','2019/12/gwendowmentlogo-1.png'),(35,20,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:699;s:6:\"height\";i:866;s:4:\"file\";s:29:\"2019/12/gwendowmentlogo-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"gwendowmentlogo-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"gwendowmentlogo-1-242x300.png\";s:5:\"width\";i:242;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:29:\"gwendowmentlogo-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(36,21,'_wp_attached_file','2019/12/Impact.jpg'),(37,21,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:395;s:6:\"height\";i:309;s:4:\"file\";s:18:\"2019/12/Impact.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Impact-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:\"Impact-300x235.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:18:\"Impact-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(38,22,'_wp_attached_file','2019/12/Robert_Hutchins.jpg'),(39,22,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:518;s:6:\"height\";i:412;s:4:\"file\";s:27:\"2019/12/Robert_Hutchins.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Robert_Hutchins-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:\"Robert_Hutchins-300x239.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:27:\"Robert_Hutchins-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(40,23,'_wp_attached_file','2019/12/Rockwell_Schoolgirl_573x355.jpg'),(41,23,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:573;s:6:\"height\";i:355;s:4:\"file\";s:39:\"2019/12/Rockwell_Schoolgirl_573x355.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Rockwell_Schoolgirl_573x355-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:39:\"Rockwell_Schoolgirl_573x355-300x186.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:39:\"Rockwell_Schoolgirl_573x355-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(42,24,'_wp_attached_file','2019/12/Rockwell-Large.jpg'),(43,24,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2400;s:6:\"height\";i:1481;s:4:\"file\";s:26:\"2019/12/Rockwell-Large.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Rockwell-Large-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:\"Rockwell-Large-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Rockwell-Large-768x474.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:474;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Rockwell-Large-1024x632.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:632;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"twentyseventeen-featured-image\";a:4:{s:4:\"file\";s:28:\"Rockwell-Large-2000x1200.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:26:\"Rockwell-Large-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(44,25,'_wp_attached_file','2019/12/Rockwells_schoolgirl.jpg'),(45,25,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:305;s:4:\"file\";s:32:\"2019/12/Rockwells_schoolgirl.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Rockwells_schoolgirl-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Rockwells_schoolgirl-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:32:\"Rockwells_schoolgirl-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(46,26,'_wp_attached_file','2019/12/Teamwork.jpg'),(47,26,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:421;s:4:\"file\";s:20:\"2019/12/Teamwork.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Teamwork-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:\"Teamwork-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:20:\"Teamwork-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(48,27,'_wp_attached_file','2019/12/Trumbull_GWashington_resign.jpg'),(49,27,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3000;s:6:\"height\";i:1962;s:4:\"file\";s:39:\"2019/12/Trumbull_GWashington_resign.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Trumbull_GWashington_resign-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:39:\"Trumbull_GWashington_resign-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"Trumbull_GWashington_resign-768x502.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:502;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Trumbull_GWashington_resign-1024x670.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:670;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"twentyseventeen-featured-image\";a:4:{s:4:\"file\";s:41:\"Trumbull_GWashington_resign-2000x1200.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:39:\"Trumbull_GWashington_resign-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(50,28,'_wp_attached_file','2019/12/Vince_Lombardi.jpg'),(51,28,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:225;s:4:\"file\";s:26:\"2019/12/Vince_Lombardi.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Vince_Lombardi-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:\"Vince_Lombardi-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:26:\"Vince_Lombardi-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(55,30,'_fl_builder_enabled','1'),(56,30,'_fl_theme_layout_type','header'),(57,30,'_fl_builder_data','a:20:{s:13:\"5de5718ea8831\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ea8831\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-24\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5de5718eac520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eac520\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718ea8831\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5de5718eb0210\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eb0210\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de5718eac520\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5dea7c07219ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7c07219ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:75:\"<p style=\"text-align: center;\">The George Washington Scholars Endowment</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";}}s:13:\"5dea7dfcc2857\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc2857\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5dea7dfcc6546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc6546\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea7dfcc2857\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea7e01db280\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7e01db280\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea7dfcc6546\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:39:\"<p style=\"text-align: center;\">1785</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-35\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";}}s:13:\"5dea8828c95a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828c95a6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1888\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5dea8828d8962\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828d8962\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dea8828dc650\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828dc650\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"43.56\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8828e033f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828e033f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"56.44\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8ee6cc2e8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8ee6cc2e8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828dc650\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:3:\"url\";s:8:\"link_url\";s:44:\"http://gwendowment.org/wordpress1/home-page/\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"6f678394e7\";s:6:\"delete\";s:10:\"ce71e00c87\";s:4:\"edit\";s:10:\"26c43ff098\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5dea94777eb4e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea94777eb4e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828e033f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:13:\"medium-mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"4b5887\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5deab0904ca37\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0904ca37\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5deab09050726\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab09050726\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5deab0904ca37\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5deab0a26b5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0a26b5a5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5deab09050726\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:3:\"-20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:3:\"-20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}s:13:\"5debd510de5ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd510de5ba\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"17\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debd510f1663\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd510f1663\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debd510de5ba\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debd51101111\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd51101111\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debd510f1663\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debd532ae0f0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd532ae0f0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debd51101111\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:3:\"-20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:3:\"-20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(58,30,'_fl_builder_draft','a:20:{s:13:\"5de5718ea8831\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ea8831\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-24\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5de5718eac520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eac520\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718ea8831\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5de5718eb0210\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eb0210\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de5718eac520\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5dea7c07219ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7c07219ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:75:\"<p style=\"text-align: center;\">The George Washington Scholars Endowment</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";}}s:13:\"5dea7dfcc2857\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc2857\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5dea7dfcc6546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc6546\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea7dfcc2857\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea7e01db280\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7e01db280\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea7dfcc6546\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:39:\"<p style=\"text-align: center;\">1785</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-35\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";}}s:13:\"5dea8828c95a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828c95a6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1888\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5dea8828d8962\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828d8962\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dea8828dc650\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828dc650\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"43.56\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8828e033f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828e033f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"56.44\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8ee6cc2e8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8ee6cc2e8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828dc650\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:3:\"url\";s:8:\"link_url\";s:44:\"http://gwendowment.org/wordpress1/home-page/\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"6f678394e7\";s:6:\"delete\";s:10:\"ce71e00c87\";s:4:\"edit\";s:10:\"26c43ff098\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5dea94777eb4e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea94777eb4e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828e033f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:13:\"medium-mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"4b5887\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5deab0904ca37\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0904ca37\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5deab09050726\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab09050726\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5deab0904ca37\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5deab0a26b5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0a26b5a5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5deab09050726\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:3:\"-20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:3:\"-20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}s:13:\"5debd510de5ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd510de5ba\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"17\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debd510f1663\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd510f1663\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debd510de5ba\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debd51101111\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd51101111\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debd510f1663\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debd532ae0f0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd532ae0f0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debd51101111\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:3:\"-20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:3:\"-20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(59,30,'_edit_lock','1581700035:1'),(60,30,'_edit_last','1'),(61,31,'_fl_builder_data','a:12:{s:13:\"5de5718ea8831\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ea8831\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:6:\"296BC9\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:3:{s:8:\"bg_image\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";}}}s:13:\"5de5718eac520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eac520\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718ea8831\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5de5718eb0210\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eb0210\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de5718eac520\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";s:2:\"35\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5de5718eb3eff\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eb3eff\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de5718eac520\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:65;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"20\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5de5718eb7bee\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eb7bee\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:7:\"heading\";s:4:\"Logo\";s:3:\"tag\";s:2:\"h1\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:4:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:7:\"regular\";s:10:\"text_align\";s:4:\"left\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"36\";s:4:\"unit\";s:2:\"px\";}}s:17:\"typography_medium\";a:0:{}s:21:\"typography_responsive\";a:0:{}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"connections\";a:2:{s:7:\"heading\";O:8:\"stdClass\":4:{s:6:\"object\";s:4:\"site\";s:8:\"property\";s:5:\"title\";s:5:\"field\";s:4:\"text\";s:8:\"settings\";N;}s:4:\"link\";O:8:\"stdClass\":4:{s:6:\"object\";s:4:\"site\";s:8:\"property\";s:3:\"url\";s:5:\"field\";s:4:\"link\";s:8:\"settings\";N;}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5de5718ebb8dd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ebb8dd\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5718eb3eff\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:6:\"arrows\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:5:\"below\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"f5f5f5\";s:16:\"link_hover_color\";s:6:\"c9deed\";s:19:\"link_hover_bg_color\";s:6:\"215fb5\";s:10:\"typography\";a:4:{s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:14:\"text_transform\";s:4:\"none\";}s:17:\"typography_medium\";s:0:\"\";s:21:\"typography_responsive\";s:0:\"\";s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:6:\"296BC9\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:15:\"menu_bg_opacity\";d:150;s:17:\"separator_opacity\";s:3:\"100\";s:22:\"mobile_menu_bg_opacity\";d:150;}}s:13:\"5de5718ebf5cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ebf5cc\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:6:\"ffffff\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:14:\"desktop-medium\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:3:{s:8:\"bg_image\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";}}}s:13:\"5de5718ec32bc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ec32bc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718ebf5cc\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5de5718ec6fab\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ec6fab\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de5718ec32bc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";s:2:\"50\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5de5718ecac9a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ecac9a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de5718ec32bc\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:50;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5de5718ece989\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ece989\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5718ecac9a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":38:{s:5:\"icons\";a:6:{i:0;O:8:\"stdClass\":10:{s:4:\"icon\";s:17:\"fab fa-facebook-f\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:13:\"link_nofollow\";s:2:\"no\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:1:\"0\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":9:{s:4:\"icon\";s:14:\"fab fa-twitter\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:13:\"link_nofollow\";s:2:\"no\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:2;O:8:\"stdClass\":9:{s:4:\"icon\";s:18:\"fab fa-pinterest-p\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:13:\"link_nofollow\";s:2:\"no\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:3;O:8:\"stdClass\":9:{s:4:\"icon\";s:11:\"fab fa-yelp\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:13:\"link_nofollow\";s:2:\"no\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:4;O:8:\"stdClass\":9:{s:4:\"icon\";s:15:\"fab fa-linkedin\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:13:\"link_nofollow\";s:2:\"no\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:5;O:8:\"stdClass\":9:{s:4:\"icon\";s:18:\"fab fa-google-plus\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:13:\"link_nofollow\";s:2:\"no\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}}s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:5:\"right\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:6:\"7f7f7f\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5de5718ed2678\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ed2678\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5718ec6fab\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":26:{s:4:\"html\";s:36:\"1-800-999-9999 — hi@loremipsum.com\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"html\";s:11:\"connections\";a:1:{s:4:\"html\";s:0:\"\";}}}}'),(62,31,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(63,30,'_fl_theme_builder_locations','a:5:{i:0;s:12:\"post:page:56\";i:1;s:12:\"post:page:37\";i:2;s:12:\"post:page:46\";i:3;s:12:\"post:page:39\";i:4;s:12:\"post:page:44\";}'),(64,30,'_fl_theme_builder_exclusions','a:0:{}'),(65,30,'_fl_theme_builder_user_rules','a:0:{}'),(66,30,'_fl_theme_builder_logic','a:0:{}'),(67,30,'_fl_theme_layout_settings','a:4:{s:6:\"sticky\";s:1:\"0\";s:6:\"shrink\";s:1:\"0\";s:7:\"overlay\";s:1:\"0\";s:10:\"overlay_bg\";s:11:\"transparent\";}'),(68,30,'_fl_theme_builder_preview_location','post:page:37'),(69,30,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(70,32,'_fl_builder_data','a:26:{s:13:\"5de5718ea8831\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ea8831\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1607\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:3:\"-40\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"003366\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:4:\"none\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5de5718eac520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eac520\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718ea8831\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5de5718eb0210\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eb0210\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de5718eac520\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5de5718eb7bee\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eb7bee\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:7:\"heading\";s:40:\"THE GEORGE WASHINGTON SCHOLARS ENDOWMENT\";s:3:\"tag\";s:2:\"h2\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:5:\"color\";s:6:\"ffd700\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"30\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"25\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"connections\";a:3:{s:7:\"heading\";s:0:\"\";s:4:\"link\";O:8:\"stdClass\":4:{s:6:\"object\";s:4:\"site\";s:8:\"property\";s:3:\"url\";s:5:\"field\";s:4:\"link\";s:8:\"settings\";N;}s:5:\"color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5de574e17e50f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de574e17e50f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de57597e4224\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:4:\"text\";s:2128:\"<h3 style=\"text-align: left;\"><span style=\"color: #223388;\">History & Mission</span></h3>\n<span style=\"color: #000000;\">The scene of George Washington resigning his commission in the Maryland State House is the stuff of legend, beautifully depicted in John Trumbull’s magnificent oil painting on display in the Rotunda of the U.S. Capitol. General Washington’s renunciation of privilege and power made him an 18th century Cincinnatus - a model of public virtue and a mythological figure in the establishment of the world’s first great democracy.</span>\n\n<span style=\"color: #000000;\">Less known, but no less remarkable, is the fact that soon after returning to his beloved Mount Vernon, General Washington penned a letter to Thomas Jefferson expressing his “inclination” to endow a school “for poor and orphaned children.” On the 17th of December, 1785, General Washington pledged £1,000 to create an Endowment “for the purpose of educating orphan children or the children of such poor and indigent persons as are unable to accomplish this by their own means.”</span>\n\n<span style=\"color: #000000;\">Throughout the remainder of his life, Washington personally administered the Endowment, demonstrating an affectionate interest in the students receiving his aid. After his death in December of 1799, the charitable trust was conveyed through his will to the Trustees of Alexandria Academy. By 1825—the year after Robert E. Lee’s graduation—they had unwisely spent the principal and the Academy closed. For another generation, Washington’s family continued to provide educational opportunity to the very poor but, without the Endowment, their charitable efforts could not be sustained.</span>\n\n<span style=\"color: #000000;\">In 2017, citizens came together to reestablish the Endowment as a 501(c)3 charity. Now the challenge is to replenish the Endowment so that it can resume its historic work. In keeping with Washington’s Last Will & Testament, revenues from the Endowment will be used entirely to provide a fine classical education to needy children, both in this country and abroad.</span>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:5:\"Arial\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575318754953_text\";s:0:\"\";s:24:\"flrich1575318991432_text\";s:0:\"\";s:24:\"flrich1575319577048_text\";s:0:\"\";s:24:\"flrich1575319663905_text\";s:0:\"\";s:24:\"flrich1575321457135_text\";s:0:\"\";}}s:13:\"5de5757044ab5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5757044ab5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de57597e7f13\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"19\";s:9:\"photo_src\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/GW_resignation_540x353.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:19;s:5:\"title\";s:22:\"GW_resignation_540x353\";s:8:\"filename\";s:26:\"GW_resignation_540x353.jpg\";s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/GW_resignation_540x353.jpg\";s:4:\"link\";s:57:\"http://gwendowment.org/wordpress1/gw_resignation_540x353/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:22:\"gw_resignation_540x353\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316942000;s:8:\"modified\";d:1575316942000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"3682d3a503\";s:6:\"delete\";s:10:\"8c8748d046\";s:4:\"edit\";s:10:\"8e981649da\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=19&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:150580;s:21:\"filesizeHumanReadable\";s:6:\"147 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:353;s:5:\"width\";i:540;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:95:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/GW_resignation_540x353-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:196;s:5:\"width\";i:300;s:3:\"url\";s:95:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/GW_resignation_540x353-300x196.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/GW_resignation_540x353.jpg\";s:6:\"height\";i:353;s:5:\"width\";i:540;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5de57597c9799\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de57597c9799\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1833\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:17:\"rgba(2,0,20,0.05)\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:3:\"-40\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5de57597e0534\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de57597e0534\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de57597c9799\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5de57597e4224\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de57597e4224\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de57597e0534\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"61.16\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5de57597e7f13\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de57597e7f13\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de57597e0534\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"38.84\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5de576981d521\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de576981d521\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718ea8831\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5de5769828bef\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5769828bef\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de576981d521\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5de576faf12b3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de576faf12b3\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5769828bef\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":38:{s:4:\"text\";s:13:\"<h2>1785</h2>\";s:5:\"color\";s:6:\"ffd700\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"100\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-40\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575319292490_text\";s:0:\"\";s:24:\"flrich1575319332026_text\";s:0:\"\";s:24:\"flrich1575319483607_text\";s:0:\"\";s:24:\"flrich1575320782946_text\";s:0:\"\";s:24:\"flrich1575320955450_text\";s:0:\"\";s:24:\"flrich1575321187651_text\";s:0:\"\";s:24:\"flrich1575321478422_text\";s:0:\"\";s:24:\"flrich1575321580583_text\";s:0:\"\";}}s:13:\"5de579166b441\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de579166b441\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718ea8831\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5de579166f130\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de579166f130\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de579166b441\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"29.27\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5de5791676b0f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5791676b0f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de579166b441\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"28.95\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5de579167a7fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de579167a7fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de579166b441\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"27.3\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5de57916821dc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de57916821dc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de579166b441\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"14.48\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5de579272b497\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de579272b497\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de579166f130\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:4:\"text\";s:19:\"History and Mission\";s:5:\"color\";s:6:\"ffd700\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"100\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575319848684_text\";s:0:\"\";s:24:\"flrich1575319925196_text\";s:0:\"\";s:24:\"flrich1575320168454_text\";s:0:\"\";s:24:\"flrich1575320232021_text\";s:0:\"\";s:24:\"flrich1575320506094_text\";s:0:\"\";s:24:\"flrich1575320886067_text\";s:0:\"\";s:24:\"flrich1575321009598_text\";s:0:\"\";s:24:\"flrich1575321173985_text\";s:0:\"\";s:24:\"flrich1575321200043_text\";s:0:\"\";s:24:\"flrich1575321241842_text\";s:0:\"\";s:24:\"flrich1575321416012_text\";s:0:\"\";s:24:\"flrich1575321496839_text\";s:0:\"\";}}s:13:\"5de57994219f3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de57994219f3\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5791676b0f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:23:\"Leadership and Teamwork\";s:5:\"color\";s:6:\"ffd700\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"100\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575319957648_text\";s:0:\"\";s:24:\"flrich1575319985759_text\";s:0:\"\";s:24:\"flrich1575320188778_text\";s:0:\"\";s:24:\"flrich1575320264210_text\";s:0:\"\";s:24:\"flrich1575320539981_text\";s:0:\"\";s:24:\"flrich1575320837681_text\";s:0:\"\";s:24:\"flrich1575320995805_text\";s:0:\"\";s:24:\"flrich1575321221980_text\";s:0:\"\";s:24:\"flrich1575321257938_text\";s:0:\"\";s:24:\"flrich1575321432863_text\";s:0:\"\";s:24:\"flrich1575321509623_text\";s:0:\"\";}}s:13:\"5de579e1df77e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de579e1df77e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de579167a7fe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":40:{s:4:\"text\";s:20:\"Quality and Equality\";s:5:\"color\";s:6:\"ffd700\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575320035449_text\";s:0:\"\";s:24:\"flrich1575320203601_text\";s:0:\"\";s:24:\"flrich1575320275299_text\";s:0:\"\";s:24:\"flrich1575320641937_text\";s:0:\"\";s:24:\"flrich1575320856716_text\";s:0:\"\";s:24:\"flrich1575321022173_text\";s:0:\"\";s:24:\"flrich1575321275653_text\";s:0:\"\";s:24:\"flrich1575321374436_text\";s:0:\"\";s:24:\"flrich1575321442337_text\";s:0:\"\";s:24:\"flrich1575321522685_text\";s:0:\"\";}}s:13:\"5de57a3f0a636\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de57a3f0a636\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de57916821dc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":40:{s:4:\"text\";s:21:\"Investment and Impact\";s:5:\"color\";s:6:\"ffd700\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"100\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575320128816_text\";s:0:\"\";s:24:\"flrich1575320147858_text\";s:0:\"\";s:24:\"flrich1575320218210_text\";s:0:\"\";s:24:\"flrich1575320300927_text\";s:0:\"\";s:24:\"flrich1575320725639_text\";s:0:\"\";s:24:\"flrich1575320877957_text\";s:0:\"\";s:24:\"flrich1575321031009_text\";s:0:\"\";s:24:\"flrich1575321285022_text\";s:0:\"\";s:24:\"flrich1575321531983_text\";s:0:\"\";s:24:\"flrich1575321560873_text\";s:0:\"\";}}s:13:\"5de580668cf45\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de580668cf45\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de57597c9799\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5de5806690c34\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5806690c34\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de580668cf45\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"17.77\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5de5806694924\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5806694924\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de580668cf45\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"82.23\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5de5806cc7785\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5806cc7785\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5806690c34\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"16\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:16;s:5:\"title\";s:17:\"George_Washington\";s:8:\"filename\";s:21:\"George_Washington.jpg\";s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:4:\"link\";s:52:\"http://gwendowment.org/wordpress1/george_washington/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:17:\"george_washington\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316933000;s:8:\"modified\";d:1575316933000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"69078d1214\";s:6:\"delete\";s:10:\"9f02e12903\";s:4:\"edit\";s:10:\"ed0c4a9c93\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=16&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:8173;s:21:\"filesizeHumanReadable\";s:4:\"8 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:180;s:5:\"width\";i:300;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-300x180.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}}'),(71,32,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(72,1,'_edit_lock','1575647774:1'),(73,30,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(78,35,'_wp_attached_file','2019/12/gwselogo.png'),(79,35,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:112;s:6:\"height\";i:83;s:4:\"file\";s:20:\"2019/12/gwselogo.png\";s:5:\"sizes\";a:0:{}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,36,'_fl_builder_data','a:16:{s:13:\"5de5718ea8831\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ea8831\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-24\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5de5718eac520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eac520\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718ea8831\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5de5718eb0210\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eb0210\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de5718eac520\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5dea7c07219ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7c07219ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:75:\"<p style=\"text-align: center;\">The George Washington Scholars Endowment</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";}}s:13:\"5dea7dfcc2857\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc2857\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5dea7dfcc6546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc6546\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea7dfcc2857\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea7e01db280\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7e01db280\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea7dfcc6546\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:39:\"<p style=\"text-align: center;\">1785</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-35\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";}}s:13:\"5dea88262a392\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea88262a392\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":125:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea882631d70\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea882631d70\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea88262a392\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dea882635a5f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea882635a5f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea882631d70\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8828c95a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828c95a6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1909\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5dea8828d8962\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828d8962\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dea8828dc650\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828dc650\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:50;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8828e033f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828e033f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:50;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea88388d7ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea88388d7ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828e033f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:0:\"\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:0:\"\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5dea8ee6cc2e8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8ee6cc2e8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828dc650\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:51:\"http://gwendowment.org/wordpress1/?attachment_id=35\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"da576648b5\";s:6:\"delete\";s:10:\"f013f3fc82\";s:4:\"edit\";s:10:\"2112ce7592\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}}'),(81,36,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(82,37,'_edit_last','1'),(83,37,'_wp_page_template','default'),(84,37,'_edit_lock','1581098868:1'),(85,39,'_edit_last','1'),(86,39,'_wp_page_template','default'),(87,39,'_edit_lock','1581098917:1'),(88,44,'_edit_last','1'),(89,44,'_wp_page_template','default'),(90,44,'_edit_lock','1581097699:1'),(91,46,'_edit_last','1'),(92,46,'_wp_page_template','default'),(93,46,'_edit_lock','1581701744:1'),(94,48,'_menu_item_type','post_type'),(95,48,'_menu_item_menu_item_parent','0'),(96,48,'_menu_item_object_id','46'),(97,48,'_menu_item_object','page'),(98,48,'_menu_item_target',''),(99,48,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(100,48,'_menu_item_xfn',''),(101,48,'_menu_item_url',''),(102,48,'_menu_item_orphaned','1575654573'),(103,49,'_menu_item_type','post_type'),(104,49,'_menu_item_menu_item_parent','0'),(105,49,'_menu_item_object_id','44'),(106,49,'_menu_item_object','page'),(107,49,'_menu_item_target',''),(108,49,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(109,49,'_menu_item_xfn',''),(110,49,'_menu_item_url',''),(111,49,'_menu_item_orphaned','1575654573'),(112,50,'_menu_item_type','post_type'),(113,50,'_menu_item_menu_item_parent','0'),(114,50,'_menu_item_object_id','39'),(115,50,'_menu_item_object','page'),(116,50,'_menu_item_target',''),(117,50,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(118,50,'_menu_item_xfn',''),(119,50,'_menu_item_url',''),(120,50,'_menu_item_orphaned','1575654573'),(121,51,'_menu_item_type','post_type'),(122,51,'_menu_item_menu_item_parent','0'),(123,51,'_menu_item_object_id','37'),(124,51,'_menu_item_object','page'),(125,51,'_menu_item_target',''),(126,51,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(127,51,'_menu_item_xfn',''),(128,51,'_menu_item_url',''),(130,52,'_menu_item_type','post_type'),(131,52,'_menu_item_menu_item_parent','0'),(132,52,'_menu_item_object_id','46'),(133,52,'_menu_item_object','page'),(134,52,'_menu_item_target',''),(135,52,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(136,52,'_menu_item_xfn',''),(137,52,'_menu_item_url',''),(139,53,'_menu_item_type','post_type'),(140,53,'_menu_item_menu_item_parent','0'),(141,53,'_menu_item_object_id','44'),(142,53,'_menu_item_object','page'),(143,53,'_menu_item_target',''),(144,53,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(145,53,'_menu_item_xfn',''),(146,53,'_menu_item_url',''),(148,54,'_menu_item_type','post_type'),(149,54,'_menu_item_menu_item_parent','0'),(150,54,'_menu_item_object_id','39'),(151,54,'_menu_item_object','page'),(152,54,'_menu_item_target',''),(153,54,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(154,54,'_menu_item_xfn',''),(155,54,'_menu_item_url',''),(157,55,'_fl_builder_data','a:16:{s:13:\"5de5718ea8831\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ea8831\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-24\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5de5718eac520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eac520\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718ea8831\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5de5718eb0210\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eb0210\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de5718eac520\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5dea7c07219ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7c07219ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:75:\"<p style=\"text-align: center;\">The George Washington Scholars Endowment</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";}}s:13:\"5dea7dfcc2857\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc2857\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5dea7dfcc6546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc6546\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea7dfcc2857\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea7e01db280\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7e01db280\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea7dfcc6546\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:39:\"<p style=\"text-align: center;\">1785</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-35\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";}}s:13:\"5dea88262a392\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea88262a392\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":125:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea882631d70\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea882631d70\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea88262a392\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dea882635a5f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea882635a5f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea882631d70\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8828c95a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828c95a6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"2016\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5dea8828d8962\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828d8962\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dea8828dc650\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828dc650\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:50;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8828e033f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828e033f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:50;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8ee6cc2e8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8ee6cc2e8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828dc650\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:51:\"http://gwendowment.org/wordpress1/?attachment_id=35\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"da576648b5\";s:6:\"delete\";s:10:\"f013f3fc82\";s:4:\"edit\";s:10:\"2112ce7592\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5dea94777eb4e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea94777eb4e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828e033f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:0:\"\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"4b5887\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}}'),(158,55,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(159,56,'_edit_last','1'),(160,56,'_edit_lock','1581115620:1'),(161,56,'_wp_page_template','default'),(162,58,'_menu_item_type','post_type'),(163,58,'_menu_item_menu_item_parent','0'),(164,58,'_menu_item_object_id','56'),(165,58,'_menu_item_object','page'),(166,58,'_menu_item_target',''),(167,58,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(168,58,'_menu_item_xfn',''),(169,58,'_menu_item_url',''),(171,37,'_fl_builder_draft','a:12:{s:13:\"5debc8362417e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362417e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:4:\"1690\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"20\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debc83627e6d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc83627e6d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc8362417e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc8362bb5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362bb5c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"61.2\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8362f84b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362f84b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"38.8\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8687dfc9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8687dfc9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362bb5c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":49:{s:4:\"text\";s:2302:\"<h2 class=\"spanH\">History & Mission</h2>\n<h4>\"GWSE is rooted in George Washington\'s original vision to provide quality education to all American children regardless of their means.\"</h4>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">The scene of George Washington resigning his commission in the Maryland State House is the stuff of legend, beautifully depicted in John Trumbull’s magnificent oil painting on display in the Rotunda of the U.S. Capitol. General Washington’s renunciation of privilege and power made him an 18th century Cincinnatus - a model of public virtue and a mythological figure in the establishment of the world’s first great democracy.</span>\n<span style=\"font-size: 16px; color: #808080;\">\nLess known, but no less remarkable, is the fact that soon after returning to his beloved Mount Vernon, General Washington penned a letter to Thomas Jefferson expressing his “inclination” to endow a school “for poor and orphaned children.” On the 17th of December, 1785, General Washington pledged £1,000 to create an Endowment “for the purpose of educating orphan children or the children of such poor and indigent persons as are unable to accomplish this by their own means.”</span>\n\n<span style=\"font-size: 16px; color: #808080;\">Throughout the remainder of his life, Washington personally administered the Endowment, demonstrating an affectionate interest in the students receiving his aid. After his death in December of 1799, the charitable trust was conveyed through his will to the Trustees of Alexandria Academy. By 1825—the year after Robert E. Lee’s graduation—they had unwisely spent the principal and the Academy closed. For another generation, Washington’s family continued to provide educational opportunity to the very poor but, without the Endowment, their charitable efforts could not be sustained.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">In 2017, citizens came together to reestablish the Endowment as a 501(c)3 charity. Now the challenge is to replenish the Endowment so that it can resume its historic work. In keeping with Washington’s Last Will & Testament, revenues from the Endowment will be used entirely to provide a fine classical education to needy children, both in this country and abroad.</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575733354680_text\";s:0:\"\";s:24:\"flrich1575733372655_text\";s:0:\"\";s:24:\"flrich1575734390347_text\";s:0:\"\";s:24:\"flrich1575734663353_text\";s:0:\"\";s:24:\"flrich1575734843323_text\";s:0:\"\";s:24:\"flrich1575735076149_text\";s:0:\"\";s:24:\"flrich1575735178532_text\";s:0:\"\";s:24:\"flrich1575735210414_text\";s:0:\"\";s:24:\"flrich1575735301946_text\";s:0:\"\";s:24:\"flrich1575735349151_text\";s:0:\"\";s:24:\"flrich1575735372333_text\";s:0:\"\";s:24:\"flrich1575735538187_text\";s:0:\"\";s:24:\"flrich1575735685523_text\";s:0:\"\";s:24:\"flrich1575735983845_text\";s:0:\"\";s:24:\"flrich1575736130990_text\";s:0:\"\";s:24:\"flrich1575736178951_text\";s:0:\"\";s:24:\"flrich1575736323832_text\";s:0:\"\";}}s:13:\"5debc98a34776\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc98a34776\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362f84b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"27\";s:9:\"photo_src\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"160\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:27;s:5:\"title\";s:27:\"Trumbull_GWashington_resign\";s:8:\"filename\";s:31:\"Trumbull_GWashington_resign.jpg\";s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:4:\"link\";s:62:\"http://gwendowment.org/wordpress1/trumbull_gwashington_resign/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:27:\"trumbull_gwashington_resign\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575317056000;s:8:\"modified\";d:1575317056000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"1a5c3dec82\";s:6:\"delete\";s:10:\"bd1d964306\";s:4:\"edit\";s:10:\"ccf0f12983\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=27&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:5138524;s:21:\"filesizeHumanReadable\";s:4:\"5 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:196;s:5:\"width\";i:300;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-300x196.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:670;s:5:\"width\";i:1024;s:3:\"url\";s:101:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-1024x670.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb243e7ef\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb243e7ef\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"960\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2449ebb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2449ebb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debcb243e7ef\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debcb244dbaa\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb244dbaa\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"35.38\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2451899\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2451899\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"64.62\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb4182993\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb4182993\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb244dbaa\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"16\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:16;s:5:\"title\";s:17:\"George_Washington\";s:8:\"filename\";s:21:\"George_Washington.jpg\";s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:4:\"link\";s:52:\"http://gwendowment.org/wordpress1/george_washington/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:17:\"george_washington\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316933000;s:8:\"modified\";d:1575316933000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"e678218ea7\";s:6:\"delete\";s:10:\"f896946808\";s:4:\"edit\";s:10:\"076cba88ec\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=16&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:8173;s:21:\"filesizeHumanReadable\";s:4:\"8 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:180;s:5:\"width\";i:300;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-300x180.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb76a606a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb76a606a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb2451899\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:131:\"<span style=\"font-size: 14px; color: #808080;\">Nothing is more important than the education of youth.” - George Washington</span>\";s:5:\"color\";s:6:\"cccccc\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"95\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575734136850_text\";s:0:\"\";s:24:\"flrich1575734424472_text\";s:0:\"\";s:24:\"flrich1581096880743_text\";s:0:\"\";s:24:\"flrich1581097187101_text\";s:0:\"\";s:24:\"flrich1581097320086_text\";s:0:\"\";}}}'),(172,37,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(173,30,'_wp_old_date','2019-12-06'),(174,59,'_fl_builder_data','a:19:{s:13:\"5de5718ea8831\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ea8831\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-24\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5de5718eac520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eac520\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718ea8831\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5de5718eb0210\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eb0210\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de5718eac520\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5dea7c07219ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7c07219ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:75:\"<p style=\"text-align: center;\">The George Washington Scholars Endowment</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";}}s:13:\"5dea7dfcc2857\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc2857\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5dea7dfcc6546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc6546\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea7dfcc2857\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea7e01db280\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7e01db280\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea7dfcc6546\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:39:\"<p style=\"text-align: center;\">1785</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-35\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";}}s:13:\"5dea88262a392\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea88262a392\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":125:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea882631d70\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea882631d70\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea88262a392\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dea882635a5f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea882635a5f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea882631d70\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8828c95a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828c95a6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"2016\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5dea8828d8962\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828d8962\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dea8828dc650\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828dc650\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"43.56\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8828e033f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828e033f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"56.44\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8ee6cc2e8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8ee6cc2e8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828dc650\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:51:\"http://gwendowment.org/wordpress1/?attachment_id=35\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"da576648b5\";s:6:\"delete\";s:10:\"f013f3fc82\";s:4:\"edit\";s:10:\"2112ce7592\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5dea94777eb4e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea94777eb4e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828e033f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:13:\"medium-mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"4b5887\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5deab0904ca37\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0904ca37\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5deab09050726\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab09050726\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5deab0904ca37\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5deab0a26b5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0a26b5a5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5deab09050726\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(175,59,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(176,60,'_fl_builder_data','a:19:{s:13:\"5debc734e5348\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc734e5348\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-24\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debc734e9037\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc734e9037\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc734e5348\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc734ecd26\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc734ecd26\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc734e9037\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5debc734f0a15\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc734f0a15\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc734ecd26\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:75:\"<p style=\"text-align: center;\">The George Washington Scholars Endowment</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";}}s:13:\"5debc735004c4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc735004c4\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc734ecd26\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5debc735041b3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc735041b3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc735004c4\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc73507ea2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc73507ea2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc735041b3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:39:\"<p style=\"text-align: center;\">1785</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-35\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";}}s:13:\"5debc7350bb91\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7350bb91\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":125:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc7350f880\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7350f880\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc7350bb91\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc7351356e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7351356e\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc7350f880\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc7351725d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7351725d\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"2016\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debc7351af4c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7351af4c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc7351725d\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc7351ec3b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7351ec3b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc7351af4c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"43.56\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc7352292a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7352292a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc7351af4c\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"56.44\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc73526619\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc73526619\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc7351ec3b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:51:\"http://gwendowment.org/wordpress1/?attachment_id=35\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"da576648b5\";s:6:\"delete\";s:10:\"f013f3fc82\";s:4:\"edit\";s:10:\"2112ce7592\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debc7352a308\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7352a308\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc7352292a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:13:\"medium-mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"4b5887\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5debc7352dff7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7352dff7\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc7351725d\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5debc73531ce6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc73531ce6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc7352dff7\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc735359d5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc735359d5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc73531ce6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(177,60,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(178,60,'_fl_builder_enabled','1'),(179,61,'_fl_builder_data','a:19:{s:13:\"5debc734e5348\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc734e5348\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-24\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debc734e9037\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc734e9037\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc734e5348\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc734ecd26\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc734ecd26\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc734e9037\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5debc734f0a15\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc734f0a15\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc734ecd26\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:75:\"<p style=\"text-align: center;\">The George Washington Scholars Endowment</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";}}s:13:\"5debc735004c4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc735004c4\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc734ecd26\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5debc735041b3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc735041b3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc735004c4\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc73507ea2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc73507ea2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc735041b3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:39:\"<p style=\"text-align: center;\">1785</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-35\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";}}s:13:\"5debc7350bb91\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7350bb91\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":125:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc7350f880\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7350f880\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc7350bb91\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc7351356e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7351356e\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc7350f880\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc7351725d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7351725d\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"2016\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debc7351af4c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7351af4c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc7351725d\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc7351ec3b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7351ec3b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc7351af4c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"43.56\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc7352292a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7352292a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc7351af4c\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"56.44\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc73526619\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc73526619\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc7351ec3b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:51:\"http://gwendowment.org/wordpress1/?attachment_id=35\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"da576648b5\";s:6:\"delete\";s:10:\"f013f3fc82\";s:4:\"edit\";s:10:\"2112ce7592\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debc7352a308\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7352a308\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc7352292a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:13:\"medium-mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"4b5887\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5debc7352dff7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7352dff7\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc7351725d\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5debc73531ce6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc73531ce6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc7352dff7\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc735359d5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc735359d5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc73531ce6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(180,61,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(181,60,'_fl_theme_layout_type','header'),(182,62,'_fl_builder_data','a:16:{s:13:\"5de5718ea8831\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ea8831\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-24\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5de5718eac520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eac520\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718ea8831\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5de5718eb0210\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eb0210\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de5718eac520\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5dea7c07219ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7c07219ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:75:\"<p style=\"text-align: center;\">The George Washington Scholars Endowment</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";}}s:13:\"5dea7dfcc2857\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc2857\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5dea7dfcc6546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc6546\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea7dfcc2857\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea7e01db280\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7e01db280\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea7dfcc6546\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:39:\"<p style=\"text-align: center;\">1785</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-35\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";}}s:13:\"5dea8828c95a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828c95a6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"2016\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5dea8828d8962\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828d8962\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dea8828dc650\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828dc650\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"43.56\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8828e033f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828e033f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"56.44\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8ee6cc2e8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8ee6cc2e8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828dc650\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:51:\"http://gwendowment.org/wordpress1/?attachment_id=35\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"da576648b5\";s:6:\"delete\";s:10:\"f013f3fc82\";s:4:\"edit\";s:10:\"2112ce7592\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5dea94777eb4e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea94777eb4e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828e033f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:13:\"medium-mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"4b5887\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5deab0904ca37\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0904ca37\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5deab09050726\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab09050726\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5deab0904ca37\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5deab0a26b5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0a26b5a5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5deab09050726\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(183,62,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(184,37,'_fl_builder_data','a:12:{s:13:\"5debc8362417e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362417e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:4:\"1690\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"20\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debc83627e6d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc83627e6d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc8362417e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc8362bb5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362bb5c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"61.2\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8362f84b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362f84b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"38.8\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8687dfc9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8687dfc9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362bb5c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:2302:\"<h2 class=\"spanH\">History & Mission</h2>\n<h4>\"GWSE is rooted in George Washington\'s original vision to provide quality education to all American children regardless of their means.\"</h4>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">The scene of George Washington resigning his commission in the Maryland State House is the stuff of legend, beautifully depicted in John Trumbull’s magnificent oil painting on display in the Rotunda of the U.S. Capitol. General Washington’s renunciation of privilege and power made him an 18th century Cincinnatus - a model of public virtue and a mythological figure in the establishment of the world’s first great democracy.</span>\n<span style=\"font-size: 16px; color: #808080;\">\nLess known, but no less remarkable, is the fact that soon after returning to his beloved Mount Vernon, General Washington penned a letter to Thomas Jefferson expressing his “inclination” to endow a school “for poor and orphaned children.” On the 17th of December, 1785, General Washington pledged £1,000 to create an Endowment “for the purpose of educating orphan children or the children of such poor and indigent persons as are unable to accomplish this by their own means.”</span>\n\n<span style=\"font-size: 16px; color: #808080;\">Throughout the remainder of his life, Washington personally administered the Endowment, demonstrating an affectionate interest in the students receiving his aid. After his death in December of 1799, the charitable trust was conveyed through his will to the Trustees of Alexandria Academy. By 1825—the year after Robert E. Lee’s graduation—they had unwisely spent the principal and the Academy closed. For another generation, Washington’s family continued to provide educational opportunity to the very poor but, without the Endowment, their charitable efforts could not be sustained.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">In 2017, citizens came together to reestablish the Endowment as a 501(c)3 charity. Now the challenge is to replenish the Endowment so that it can resume its historic work. In keeping with Washington’s Last Will & Testament, revenues from the Endowment will be used entirely to provide a fine classical education to needy children, both in this country and abroad.</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575733354680_text\";s:0:\"\";s:24:\"flrich1575733372655_text\";s:0:\"\";s:24:\"flrich1575734390347_text\";s:0:\"\";s:24:\"flrich1575734663353_text\";s:0:\"\";s:24:\"flrich1575734843323_text\";s:0:\"\";s:24:\"flrich1575735076149_text\";s:0:\"\";s:24:\"flrich1575735178532_text\";s:0:\"\";s:24:\"flrich1575735210414_text\";s:0:\"\";s:24:\"flrich1575735301946_text\";s:0:\"\";s:24:\"flrich1575735349151_text\";s:0:\"\";s:24:\"flrich1575735372333_text\";s:0:\"\";s:24:\"flrich1575735538187_text\";s:0:\"\";s:24:\"flrich1575735685523_text\";s:0:\"\";s:24:\"flrich1575735983845_text\";s:0:\"\";s:24:\"flrich1575736130990_text\";s:0:\"\";s:24:\"flrich1575736178951_text\";s:0:\"\";s:24:\"flrich1575736323832_text\";s:0:\"\";}}s:13:\"5debc98a34776\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc98a34776\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362f84b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"27\";s:9:\"photo_src\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"160\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:27;s:5:\"title\";s:27:\"Trumbull_GWashington_resign\";s:8:\"filename\";s:31:\"Trumbull_GWashington_resign.jpg\";s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:4:\"link\";s:62:\"http://gwendowment.org/wordpress1/trumbull_gwashington_resign/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:27:\"trumbull_gwashington_resign\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575317056000;s:8:\"modified\";d:1575317056000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"1a5c3dec82\";s:6:\"delete\";s:10:\"bd1d964306\";s:4:\"edit\";s:10:\"ccf0f12983\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=27&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:5138524;s:21:\"filesizeHumanReadable\";s:4:\"5 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:196;s:5:\"width\";i:300;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-300x196.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:670;s:5:\"width\";i:1024;s:3:\"url\";s:101:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-1024x670.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb243e7ef\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb243e7ef\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":125:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"960\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2449ebb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2449ebb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debcb243e7ef\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debcb244dbaa\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb244dbaa\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"35.38\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2451899\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2451899\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"64.62\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb4182993\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb4182993\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb244dbaa\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"16\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:16;s:5:\"title\";s:17:\"George_Washington\";s:8:\"filename\";s:21:\"George_Washington.jpg\";s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:4:\"link\";s:52:\"http://gwendowment.org/wordpress1/george_washington/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:17:\"george_washington\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316933000;s:8:\"modified\";d:1575316933000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"e678218ea7\";s:6:\"delete\";s:10:\"f896946808\";s:4:\"edit\";s:10:\"076cba88ec\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=16&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:8173;s:21:\"filesizeHumanReadable\";s:4:\"8 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:180;s:5:\"width\";i:300;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-300x180.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb76a606a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb76a606a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb2451899\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":32:{s:4:\"text\";s:80:\"“Nothing is more important than the education of youth.” - George Washington\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"95\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575734136850_text\";s:0:\"\";s:24:\"flrich1575734424472_text\";s:0:\"\";}}}'),(185,37,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(186,37,'_fl_builder_enabled','1'),(187,63,'_fl_builder_data','a:12:{s:13:\"5debc8362417e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362417e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:4:\"1690\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debc83627e6d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc83627e6d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc8362417e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc8362bb5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362bb5c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"61.2\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8362f84b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362f84b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"38.8\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8687dfc9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8687dfc9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362bb5c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":32:{s:4:\"text\";s:2147:\"<h3 class=\"spanH\">History & Mission</h3>\n<span style=\"font-size: 20px; color: #808080;\">The scene of George Washington resigning his commission in the Maryland State House is the stuff of legend, beautifully depicted in John Trumbull’s magnificent oil painting on display in the Rotunda of the U.S. Capitol. General Washington’s renunciation of privilege and power made him an 18th century Cincinnatus - a model of public virtue and a mythological figure in the establishment of the world’s first great democracy.</span>\n\n<span style=\"font-size: 20px; color: #808080;\">Less known, but no less remarkable, is the fact that soon after returning to his beloved Mount Vernon, General Washington penned a letter to Thomas Jefferson expressing his “inclination” to endow a school “for poor and orphaned children.” On the 17th of December, 1785, General Washington pledged £1,000 to create an Endowment “for the purpose of educating orphan children or the children of such poor and indigent persons as are unable to accomplish this by their own means.”</span>\n\n<span style=\"font-size: 20px; color: #808080;\">Throughout the remainder of his life, Washington personally administered the Endowment, demonstrating an affectionate interest in the students receiving his aid. After his death in December of 1799, the charitable trust was conveyed through his will to the Trustees of Alexandria Academy. By 1825—the year after Robert E. Lee’s graduation—they had unwisely spent the principal and the Academy closed. For another generation, Washington’s family continued to provide educational opportunity to the very poor but, without the Endowment, their charitable efforts could not be sustained.</span>\n\n<span style=\"font-size: 20px; color: #808080;\">In 2017, citizens came together to reestablish the Endowment as a 501(c)3 charity. Now the challenge is to replenish the Endowment so that it can resume its historic work. In keeping with Washington’s Last Will & Testament, revenues from the Endowment will be used entirely to provide a fine classical education to needy children, both in this country and abroad.</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575733354680_text\";s:0:\"\";s:24:\"flrich1575733372655_text\";s:0:\"\";}}s:13:\"5debc98a34776\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc98a34776\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362f84b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"27\";s:9:\"photo_src\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"150\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:27;s:5:\"title\";s:27:\"Trumbull_GWashington_resign\";s:8:\"filename\";s:31:\"Trumbull_GWashington_resign.jpg\";s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:4:\"link\";s:62:\"http://gwendowment.org/wordpress1/trumbull_gwashington_resign/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:27:\"trumbull_gwashington_resign\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575317056000;s:8:\"modified\";d:1575317056000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"1a5c3dec82\";s:6:\"delete\";s:10:\"bd1d964306\";s:4:\"edit\";s:10:\"ccf0f12983\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=27&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:5138524;s:21:\"filesizeHumanReadable\";s:4:\"5 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:196;s:5:\"width\";i:300;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-300x196.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:670;s:5:\"width\";i:1024;s:3:\"url\";s:101:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-1024x670.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb243e7ef\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb243e7ef\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":125:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2449ebb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2449ebb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debcb243e7ef\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debcb244dbaa\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb244dbaa\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"35.38\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2451899\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2451899\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"64.62\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb4182993\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb4182993\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb244dbaa\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"16\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:16;s:5:\"title\";s:17:\"George_Washington\";s:8:\"filename\";s:21:\"George_Washington.jpg\";s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:4:\"link\";s:52:\"http://gwendowment.org/wordpress1/george_washington/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:17:\"george_washington\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316933000;s:8:\"modified\";d:1575316933000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"e678218ea7\";s:6:\"delete\";s:10:\"f896946808\";s:4:\"edit\";s:10:\"076cba88ec\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=16&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:8173;s:21:\"filesizeHumanReadable\";s:4:\"8 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:180;s:5:\"width\";i:300;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-300x180.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb76a606a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb76a606a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb2451899\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:4:\"text\";s:80:\"“Nothing is more important than the education of youth.” - George Washington\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"95\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575734136850_text\";s:0:\"\";}}}'),(188,63,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(189,64,'_fl_builder_data','a:12:{s:13:\"5debc8362417e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362417e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:4:\"1690\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debc83627e6d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc83627e6d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc8362417e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc8362bb5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362bb5c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"61.2\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8362f84b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362f84b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"38.8\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8687dfc9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8687dfc9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362bb5c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:4:\"text\";s:2147:\"<h3 class=\"spanH\">History & Mission</h3>\n<span style=\"font-size: 16px; color: #808080;\">The scene of George Washington resigning his commission in the Maryland State House is the stuff of legend, beautifully depicted in John Trumbull’s magnificent oil painting on display in the Rotunda of the U.S. Capitol. General Washington’s renunciation of privilege and power made him an 18th century Cincinnatus - a model of public virtue and a mythological figure in the establishment of the world’s first great democracy.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">Less known, but no less remarkable, is the fact that soon after returning to his beloved Mount Vernon, General Washington penned a letter to Thomas Jefferson expressing his “inclination” to endow a school “for poor and orphaned children.” On the 17th of December, 1785, General Washington pledged £1,000 to create an Endowment “for the purpose of educating orphan children or the children of such poor and indigent persons as are unable to accomplish this by their own means.”</span>\n\n<span style=\"font-size: 16px; color: #808080;\">Throughout the remainder of his life, Washington personally administered the Endowment, demonstrating an affectionate interest in the students receiving his aid. After his death in December of 1799, the charitable trust was conveyed through his will to the Trustees of Alexandria Academy. By 1825—the year after Robert E. Lee’s graduation—they had unwisely spent the principal and the Academy closed. For another generation, Washington’s family continued to provide educational opportunity to the very poor but, without the Endowment, their charitable efforts could not be sustained.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">In 2017, citizens came together to reestablish the Endowment as a 501(c)3 charity. Now the challenge is to replenish the Endowment so that it can resume its historic work. In keeping with Washington’s Last Will & Testament, revenues from the Endowment will be used entirely to provide a fine classical education to needy children, both in this country and abroad.</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575733354680_text\";s:0:\"\";s:24:\"flrich1575733372655_text\";s:0:\"\";s:24:\"flrich1575734390347_text\";s:0:\"\";}}s:13:\"5debc98a34776\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc98a34776\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362f84b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"27\";s:9:\"photo_src\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"110\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:27;s:5:\"title\";s:27:\"Trumbull_GWashington_resign\";s:8:\"filename\";s:31:\"Trumbull_GWashington_resign.jpg\";s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:4:\"link\";s:62:\"http://gwendowment.org/wordpress1/trumbull_gwashington_resign/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:27:\"trumbull_gwashington_resign\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575317056000;s:8:\"modified\";d:1575317056000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"1a5c3dec82\";s:6:\"delete\";s:10:\"bd1d964306\";s:4:\"edit\";s:10:\"ccf0f12983\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=27&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:5138524;s:21:\"filesizeHumanReadable\";s:4:\"5 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:196;s:5:\"width\";i:300;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-300x196.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:670;s:5:\"width\";i:1024;s:3:\"url\";s:101:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-1024x670.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb243e7ef\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb243e7ef\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":125:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2449ebb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2449ebb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debcb243e7ef\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debcb244dbaa\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb244dbaa\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"35.38\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2451899\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2451899\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"64.62\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb4182993\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb4182993\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb244dbaa\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"16\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:16;s:5:\"title\";s:17:\"George_Washington\";s:8:\"filename\";s:21:\"George_Washington.jpg\";s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:4:\"link\";s:52:\"http://gwendowment.org/wordpress1/george_washington/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:17:\"george_washington\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316933000;s:8:\"modified\";d:1575316933000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"e678218ea7\";s:6:\"delete\";s:10:\"f896946808\";s:4:\"edit\";s:10:\"076cba88ec\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=16&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:8173;s:21:\"filesizeHumanReadable\";s:4:\"8 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:180;s:5:\"width\";i:300;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-300x180.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb76a606a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb76a606a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb2451899\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":32:{s:4:\"text\";s:80:\"“Nothing is more important than the education of youth.” - George Washington\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"95\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575734136850_text\";s:0:\"\";s:24:\"flrich1575734424472_text\";s:0:\"\";}}}'),(190,64,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(191,65,'_fl_builder_data','a:12:{s:13:\"5debc8362417e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362417e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:4:\"1690\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debc83627e6d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc83627e6d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc8362417e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc8362bb5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362bb5c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"61.2\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8362f84b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362f84b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"38.8\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8687dfc9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8687dfc9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362bb5c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:2302:\"<h2 class=\"spanH\">History & Mission</h2>\n<h4>\"GWSE is rooted in George Washington\'s original vision to provide quality education to all American children regardless of their means.\"</h4>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">The scene of George Washington resigning his commission in the Maryland State House is the stuff of legend, beautifully depicted in John Trumbull’s magnificent oil painting on display in the Rotunda of the U.S. Capitol. General Washington’s renunciation of privilege and power made him an 18th century Cincinnatus - a model of public virtue and a mythological figure in the establishment of the world’s first great democracy.</span>\n<span style=\"font-size: 16px; color: #808080;\">\nLess known, but no less remarkable, is the fact that soon after returning to his beloved Mount Vernon, General Washington penned a letter to Thomas Jefferson expressing his “inclination” to endow a school “for poor and orphaned children.” On the 17th of December, 1785, General Washington pledged £1,000 to create an Endowment “for the purpose of educating orphan children or the children of such poor and indigent persons as are unable to accomplish this by their own means.”</span>\n\n<span style=\"font-size: 16px; color: #808080;\">Throughout the remainder of his life, Washington personally administered the Endowment, demonstrating an affectionate interest in the students receiving his aid. After his death in December of 1799, the charitable trust was conveyed through his will to the Trustees of Alexandria Academy. By 1825—the year after Robert E. Lee’s graduation—they had unwisely spent the principal and the Academy closed. For another generation, Washington’s family continued to provide educational opportunity to the very poor but, without the Endowment, their charitable efforts could not be sustained.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">In 2017, citizens came together to reestablish the Endowment as a 501(c)3 charity. Now the challenge is to replenish the Endowment so that it can resume its historic work. In keeping with Washington’s Last Will & Testament, revenues from the Endowment will be used entirely to provide a fine classical education to needy children, both in this country and abroad.</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575733354680_text\";s:0:\"\";s:24:\"flrich1575733372655_text\";s:0:\"\";s:24:\"flrich1575734390347_text\";s:0:\"\";s:24:\"flrich1575734663353_text\";s:0:\"\";s:24:\"flrich1575734843323_text\";s:0:\"\";s:24:\"flrich1575735076149_text\";s:0:\"\";s:24:\"flrich1575735178532_text\";s:0:\"\";s:24:\"flrich1575735210414_text\";s:0:\"\";s:24:\"flrich1575735301946_text\";s:0:\"\";s:24:\"flrich1575735349151_text\";s:0:\"\";s:24:\"flrich1575735372333_text\";s:0:\"\";s:24:\"flrich1575735538187_text\";s:0:\"\";s:24:\"flrich1575735685523_text\";s:0:\"\";s:24:\"flrich1575735983845_text\";s:0:\"\";s:24:\"flrich1575736130990_text\";s:0:\"\";s:24:\"flrich1575736178951_text\";s:0:\"\";s:24:\"flrich1575736323832_text\";s:0:\"\";}}s:13:\"5debc98a34776\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc98a34776\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362f84b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"27\";s:9:\"photo_src\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"162\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:27;s:5:\"title\";s:27:\"Trumbull_GWashington_resign\";s:8:\"filename\";s:31:\"Trumbull_GWashington_resign.jpg\";s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:4:\"link\";s:62:\"http://gwendowment.org/wordpress1/trumbull_gwashington_resign/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:27:\"trumbull_gwashington_resign\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575317056000;s:8:\"modified\";d:1575317056000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"1a5c3dec82\";s:6:\"delete\";s:10:\"bd1d964306\";s:4:\"edit\";s:10:\"ccf0f12983\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=27&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:5138524;s:21:\"filesizeHumanReadable\";s:4:\"5 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:196;s:5:\"width\";i:300;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-300x196.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:670;s:5:\"width\";i:1024;s:3:\"url\";s:101:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-1024x670.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb243e7ef\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb243e7ef\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":125:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2449ebb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2449ebb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debcb243e7ef\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debcb244dbaa\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb244dbaa\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"35.38\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2451899\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2451899\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"64.62\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb4182993\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb4182993\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb244dbaa\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"16\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:16;s:5:\"title\";s:17:\"George_Washington\";s:8:\"filename\";s:21:\"George_Washington.jpg\";s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:4:\"link\";s:52:\"http://gwendowment.org/wordpress1/george_washington/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:17:\"george_washington\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316933000;s:8:\"modified\";d:1575316933000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"e678218ea7\";s:6:\"delete\";s:10:\"f896946808\";s:4:\"edit\";s:10:\"076cba88ec\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=16&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:8173;s:21:\"filesizeHumanReadable\";s:4:\"8 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:180;s:5:\"width\";i:300;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-300x180.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb76a606a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb76a606a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb2451899\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":32:{s:4:\"text\";s:80:\"“Nothing is more important than the education of youth.” - George Washington\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"95\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575734136850_text\";s:0:\"\";s:24:\"flrich1575734424472_text\";s:0:\"\";}}}'),(192,65,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(193,66,'_fl_builder_data','a:20:{s:13:\"5de5718ea8831\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ea8831\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-24\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5de5718eac520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eac520\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718ea8831\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5de5718eb0210\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eb0210\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de5718eac520\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5dea7c07219ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7c07219ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:75:\"<p style=\"text-align: center;\">The George Washington Scholars Endowment</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";}}s:13:\"5dea7dfcc2857\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc2857\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5dea7dfcc6546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc6546\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea7dfcc2857\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea7e01db280\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7e01db280\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea7dfcc6546\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:39:\"<p style=\"text-align: center;\">1785</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-35\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";}}s:13:\"5dea8828c95a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828c95a6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"2016\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5dea8828d8962\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828d8962\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dea8828dc650\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828dc650\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"43.56\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8828e033f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828e033f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"56.44\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8ee6cc2e8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8ee6cc2e8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828dc650\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:51:\"http://gwendowment.org/wordpress1/?attachment_id=35\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"da576648b5\";s:6:\"delete\";s:10:\"f013f3fc82\";s:4:\"edit\";s:10:\"2112ce7592\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5dea94777eb4e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea94777eb4e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828e033f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:13:\"medium-mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"4b5887\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5deab0904ca37\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0904ca37\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5deab09050726\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab09050726\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5deab0904ca37\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5deab0a26b5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0a26b5a5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5deab09050726\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}s:13:\"5debd510de5ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd510de5ba\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debd510f1663\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd510f1663\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debd510de5ba\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debd51101111\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd51101111\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debd510f1663\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debd532ae0f0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd532ae0f0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debd51101111\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(194,66,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(195,67,'_fl_builder_data','a:12:{s:13:\"5debc8362417e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362417e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:4:\"1690\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"20\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debc83627e6d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc83627e6d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc8362417e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc8362bb5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362bb5c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"61.2\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8362f84b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362f84b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"38.8\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8687dfc9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8687dfc9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362bb5c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:2302:\"<h2 class=\"spanH\">History & Mission</h2>\n<h4>\"GWSE is rooted in George Washington\'s original vision to provide quality education to all American children regardless of their means.\"</h4>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">The scene of George Washington resigning his commission in the Maryland State House is the stuff of legend, beautifully depicted in John Trumbull’s magnificent oil painting on display in the Rotunda of the U.S. Capitol. General Washington’s renunciation of privilege and power made him an 18th century Cincinnatus - a model of public virtue and a mythological figure in the establishment of the world’s first great democracy.</span>\n<span style=\"font-size: 16px; color: #808080;\">\nLess known, but no less remarkable, is the fact that soon after returning to his beloved Mount Vernon, General Washington penned a letter to Thomas Jefferson expressing his “inclination” to endow a school “for poor and orphaned children.” On the 17th of December, 1785, General Washington pledged £1,000 to create an Endowment “for the purpose of educating orphan children or the children of such poor and indigent persons as are unable to accomplish this by their own means.”</span>\n\n<span style=\"font-size: 16px; color: #808080;\">Throughout the remainder of his life, Washington personally administered the Endowment, demonstrating an affectionate interest in the students receiving his aid. After his death in December of 1799, the charitable trust was conveyed through his will to the Trustees of Alexandria Academy. By 1825—the year after Robert E. Lee’s graduation—they had unwisely spent the principal and the Academy closed. For another generation, Washington’s family continued to provide educational opportunity to the very poor but, without the Endowment, their charitable efforts could not be sustained.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">In 2017, citizens came together to reestablish the Endowment as a 501(c)3 charity. Now the challenge is to replenish the Endowment so that it can resume its historic work. In keeping with Washington’s Last Will & Testament, revenues from the Endowment will be used entirely to provide a fine classical education to needy children, both in this country and abroad.</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575733354680_text\";s:0:\"\";s:24:\"flrich1575733372655_text\";s:0:\"\";s:24:\"flrich1575734390347_text\";s:0:\"\";s:24:\"flrich1575734663353_text\";s:0:\"\";s:24:\"flrich1575734843323_text\";s:0:\"\";s:24:\"flrich1575735076149_text\";s:0:\"\";s:24:\"flrich1575735178532_text\";s:0:\"\";s:24:\"flrich1575735210414_text\";s:0:\"\";s:24:\"flrich1575735301946_text\";s:0:\"\";s:24:\"flrich1575735349151_text\";s:0:\"\";s:24:\"flrich1575735372333_text\";s:0:\"\";s:24:\"flrich1575735538187_text\";s:0:\"\";s:24:\"flrich1575735685523_text\";s:0:\"\";s:24:\"flrich1575735983845_text\";s:0:\"\";s:24:\"flrich1575736130990_text\";s:0:\"\";s:24:\"flrich1575736178951_text\";s:0:\"\";s:24:\"flrich1575736323832_text\";s:0:\"\";}}s:13:\"5debc98a34776\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc98a34776\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362f84b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"27\";s:9:\"photo_src\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"162\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:27;s:5:\"title\";s:27:\"Trumbull_GWashington_resign\";s:8:\"filename\";s:31:\"Trumbull_GWashington_resign.jpg\";s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:4:\"link\";s:62:\"http://gwendowment.org/wordpress1/trumbull_gwashington_resign/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:27:\"trumbull_gwashington_resign\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575317056000;s:8:\"modified\";d:1575317056000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"1a5c3dec82\";s:6:\"delete\";s:10:\"bd1d964306\";s:4:\"edit\";s:10:\"ccf0f12983\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=27&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:5138524;s:21:\"filesizeHumanReadable\";s:4:\"5 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:196;s:5:\"width\";i:300;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-300x196.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:670;s:5:\"width\";i:1024;s:3:\"url\";s:101:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-1024x670.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb243e7ef\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb243e7ef\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":125:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2449ebb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2449ebb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debcb243e7ef\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debcb244dbaa\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb244dbaa\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"35.38\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2451899\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2451899\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"64.62\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb4182993\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb4182993\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb244dbaa\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"16\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:16;s:5:\"title\";s:17:\"George_Washington\";s:8:\"filename\";s:21:\"George_Washington.jpg\";s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:4:\"link\";s:52:\"http://gwendowment.org/wordpress1/george_washington/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:17:\"george_washington\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316933000;s:8:\"modified\";d:1575316933000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"e678218ea7\";s:6:\"delete\";s:10:\"f896946808\";s:4:\"edit\";s:10:\"076cba88ec\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=16&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:8173;s:21:\"filesizeHumanReadable\";s:4:\"8 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:180;s:5:\"width\";i:300;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-300x180.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb76a606a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb76a606a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb2451899\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":32:{s:4:\"text\";s:80:\"“Nothing is more important than the education of youth.” - George Washington\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"95\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575734136850_text\";s:0:\"\";s:24:\"flrich1575734424472_text\";s:0:\"\";}}}'),(196,67,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(197,68,'_fl_builder_data','a:20:{s:13:\"5de5718ea8831\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ea8831\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-24\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5de5718eac520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eac520\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718ea8831\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5de5718eb0210\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eb0210\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de5718eac520\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5dea7c07219ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7c07219ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:75:\"<p style=\"text-align: center;\">The George Washington Scholars Endowment</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";}}s:13:\"5dea7dfcc2857\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc2857\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5dea7dfcc6546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc6546\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea7dfcc2857\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea7e01db280\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7e01db280\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea7dfcc6546\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:39:\"<p style=\"text-align: center;\">1785</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-35\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";}}s:13:\"5dea8828c95a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828c95a6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"2016\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5dea8828d8962\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828d8962\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dea8828dc650\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828dc650\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"43.56\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8828e033f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828e033f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"56.44\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8ee6cc2e8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8ee6cc2e8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828dc650\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:51:\"http://gwendowment.org/wordpress1/?attachment_id=35\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"da576648b5\";s:6:\"delete\";s:10:\"f013f3fc82\";s:4:\"edit\";s:10:\"2112ce7592\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5dea94777eb4e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea94777eb4e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828e033f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:13:\"medium-mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"4b5887\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5deab0904ca37\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0904ca37\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5deab09050726\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab09050726\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5deab0904ca37\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5deab0a26b5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0a26b5a5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5deab09050726\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}s:13:\"5debd510de5ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd510de5ba\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debd510f1663\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd510f1663\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debd510de5ba\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debd51101111\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd51101111\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debd510f1663\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debd532ae0f0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd532ae0f0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debd51101111\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(198,68,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'); INSERT INTO `wp_postmeta` VALUES (199,69,'_fl_builder_data','a:20:{s:13:\"5de5718ea8831\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ea8831\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-24\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5de5718eac520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eac520\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718ea8831\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5de5718eb0210\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eb0210\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de5718eac520\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5dea7c07219ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7c07219ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:75:\"<p style=\"text-align: center;\">The George Washington Scholars Endowment</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";}}s:13:\"5dea7dfcc2857\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc2857\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5dea7dfcc6546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc6546\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea7dfcc2857\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea7e01db280\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7e01db280\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea7dfcc6546\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:39:\"<p style=\"text-align: center;\">1785</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-35\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";}}s:13:\"5dea8828c95a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828c95a6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"2016\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5dea8828d8962\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828d8962\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dea8828dc650\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828dc650\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"43.56\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8828e033f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828e033f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"56.44\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8ee6cc2e8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8ee6cc2e8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828dc650\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:51:\"http://gwendowment.org/wordpress1/?attachment_id=35\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"da576648b5\";s:6:\"delete\";s:10:\"f013f3fc82\";s:4:\"edit\";s:10:\"2112ce7592\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5dea94777eb4e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea94777eb4e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828e033f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:13:\"medium-mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"4b5887\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5deab0904ca37\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0904ca37\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5deab09050726\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab09050726\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5deab0904ca37\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5deab0a26b5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0a26b5a5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5deab09050726\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}s:13:\"5debd510de5ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd510de5ba\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debd510f1663\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd510f1663\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debd510de5ba\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debd51101111\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd51101111\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debd510f1663\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debd532ae0f0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd532ae0f0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debd51101111\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(200,69,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(201,70,'_fl_builder_data','a:20:{s:13:\"5de5718ea8831\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ea8831\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-24\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5de5718eac520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eac520\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718ea8831\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5de5718eb0210\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eb0210\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de5718eac520\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5dea7c07219ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7c07219ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:75:\"<p style=\"text-align: center;\">The George Washington Scholars Endowment</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";}}s:13:\"5dea7dfcc2857\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc2857\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5dea7dfcc6546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc6546\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea7dfcc2857\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea7e01db280\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7e01db280\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea7dfcc6546\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:39:\"<p style=\"text-align: center;\">1785</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-35\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";}}s:13:\"5dea8828c95a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828c95a6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1888\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5dea8828d8962\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828d8962\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dea8828dc650\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828dc650\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"43.56\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8828e033f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828e033f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"56.44\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8ee6cc2e8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8ee6cc2e8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828dc650\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:51:\"http://gwendowment.org/wordpress1/?attachment_id=35\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"da576648b5\";s:6:\"delete\";s:10:\"f013f3fc82\";s:4:\"edit\";s:10:\"2112ce7592\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5dea94777eb4e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea94777eb4e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828e033f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:13:\"medium-mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"4b5887\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5deab0904ca37\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0904ca37\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5deab09050726\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab09050726\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5deab0904ca37\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5deab0a26b5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0a26b5a5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5deab09050726\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:3:\"-20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:3:\"-20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}s:13:\"5debd510de5ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd510de5ba\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"17\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debd510f1663\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd510f1663\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debd510de5ba\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debd51101111\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd51101111\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debd510f1663\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debd532ae0f0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd532ae0f0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debd51101111\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:3:\"-20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:3:\"-20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(202,70,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(203,71,'_fl_builder_data','a:12:{s:13:\"5debc8362417e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362417e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:4:\"1690\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"20\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debc83627e6d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc83627e6d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc8362417e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc8362bb5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362bb5c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"61.2\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8362f84b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362f84b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"38.8\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8687dfc9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8687dfc9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362bb5c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:2302:\"<h2 class=\"spanH\">History & Mission</h2>\n<h4>\"GWSE is rooted in George Washington\'s original vision to provide quality education to all American children regardless of their means.\"</h4>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">The scene of George Washington resigning his commission in the Maryland State House is the stuff of legend, beautifully depicted in John Trumbull’s magnificent oil painting on display in the Rotunda of the U.S. Capitol. General Washington’s renunciation of privilege and power made him an 18th century Cincinnatus - a model of public virtue and a mythological figure in the establishment of the world’s first great democracy.</span>\n<span style=\"font-size: 16px; color: #808080;\">\nLess known, but no less remarkable, is the fact that soon after returning to his beloved Mount Vernon, General Washington penned a letter to Thomas Jefferson expressing his “inclination” to endow a school “for poor and orphaned children.” On the 17th of December, 1785, General Washington pledged £1,000 to create an Endowment “for the purpose of educating orphan children or the children of such poor and indigent persons as are unable to accomplish this by their own means.”</span>\n\n<span style=\"font-size: 16px; color: #808080;\">Throughout the remainder of his life, Washington personally administered the Endowment, demonstrating an affectionate interest in the students receiving his aid. After his death in December of 1799, the charitable trust was conveyed through his will to the Trustees of Alexandria Academy. By 1825—the year after Robert E. Lee’s graduation—they had unwisely spent the principal and the Academy closed. For another generation, Washington’s family continued to provide educational opportunity to the very poor but, without the Endowment, their charitable efforts could not be sustained.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">In 2017, citizens came together to reestablish the Endowment as a 501(c)3 charity. Now the challenge is to replenish the Endowment so that it can resume its historic work. In keeping with Washington’s Last Will & Testament, revenues from the Endowment will be used entirely to provide a fine classical education to needy children, both in this country and abroad.</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575733354680_text\";s:0:\"\";s:24:\"flrich1575733372655_text\";s:0:\"\";s:24:\"flrich1575734390347_text\";s:0:\"\";s:24:\"flrich1575734663353_text\";s:0:\"\";s:24:\"flrich1575734843323_text\";s:0:\"\";s:24:\"flrich1575735076149_text\";s:0:\"\";s:24:\"flrich1575735178532_text\";s:0:\"\";s:24:\"flrich1575735210414_text\";s:0:\"\";s:24:\"flrich1575735301946_text\";s:0:\"\";s:24:\"flrich1575735349151_text\";s:0:\"\";s:24:\"flrich1575735372333_text\";s:0:\"\";s:24:\"flrich1575735538187_text\";s:0:\"\";s:24:\"flrich1575735685523_text\";s:0:\"\";s:24:\"flrich1575735983845_text\";s:0:\"\";s:24:\"flrich1575736130990_text\";s:0:\"\";s:24:\"flrich1575736178951_text\";s:0:\"\";s:24:\"flrich1575736323832_text\";s:0:\"\";}}s:13:\"5debc98a34776\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc98a34776\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362f84b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"27\";s:9:\"photo_src\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"160\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:27;s:5:\"title\";s:27:\"Trumbull_GWashington_resign\";s:8:\"filename\";s:31:\"Trumbull_GWashington_resign.jpg\";s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:4:\"link\";s:62:\"http://gwendowment.org/wordpress1/trumbull_gwashington_resign/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:27:\"trumbull_gwashington_resign\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575317056000;s:8:\"modified\";d:1575317056000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"1a5c3dec82\";s:6:\"delete\";s:10:\"bd1d964306\";s:4:\"edit\";s:10:\"ccf0f12983\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=27&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:5138524;s:21:\"filesizeHumanReadable\";s:4:\"5 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:196;s:5:\"width\";i:300;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-300x196.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:670;s:5:\"width\";i:1024;s:3:\"url\";s:101:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-1024x670.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb243e7ef\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb243e7ef\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":125:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"960\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2449ebb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2449ebb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debcb243e7ef\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debcb244dbaa\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb244dbaa\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"35.38\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2451899\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2451899\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"64.62\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb4182993\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb4182993\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb244dbaa\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"16\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:16;s:5:\"title\";s:17:\"George_Washington\";s:8:\"filename\";s:21:\"George_Washington.jpg\";s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:4:\"link\";s:52:\"http://gwendowment.org/wordpress1/george_washington/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:17:\"george_washington\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316933000;s:8:\"modified\";d:1575316933000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"e678218ea7\";s:6:\"delete\";s:10:\"f896946808\";s:4:\"edit\";s:10:\"076cba88ec\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=16&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:8173;s:21:\"filesizeHumanReadable\";s:4:\"8 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:180;s:5:\"width\";i:300;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-300x180.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb76a606a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb76a606a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb2451899\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":32:{s:4:\"text\";s:80:\"“Nothing is more important than the education of youth.” - George Washington\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"95\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575734136850_text\";s:0:\"\";s:24:\"flrich1575734424472_text\";s:0:\"\";}}}'),(204,71,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(207,46,'_fl_builder_draft','a:23:{s:13:\"5defa442b79ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442b79ad\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa442e54dc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e54dc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa442b79ad\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa442e91cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e91cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"73.03\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa4487c019\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa4487c019\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"26.97\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa46682ac2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa46682ac2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa442e91cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:1688:\"<h2 style=\"text-align: left;\">Investment & Impact</h2>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">Replenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”</span>\n\n<span style=\"font-size: 16px; color: #808080;\">Because the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:</span>\n<ul>\n <li><span style=\"font-size: 16px; color: #808080;\">Unusual Assets (such as a vehicle, work of art, or real estate),</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Wills or Trust Bequests,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Charitable Gift Annuities,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">IRA Rollover Gifts,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Appreciated Securities,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">The Gift of Life Insurance, and</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">A Charitable Remainder Trust.</span></li>\n</ul>\n<span style=\"font-size: 16px; color: #808080;\">Contributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986280828_text\";s:0:\"\";s:24:\"flrich1580160915873_text\";s:0:\"\";s:24:\"flrich1580160994089_text\";s:0:\"\";s:24:\"flrich1580161344480_text\";s:0:\"\";s:24:\"flrich1581095498524_text\";s:0:\"\";s:24:\"flrich1581095786968_text\";s:0:\"\";s:24:\"flrich1581096033906_text\";s:0:\"\";s:24:\"flrich1581096127044_text\";s:0:\"\";s:24:\"flrich1581096139577_text\";s:0:\"\";}}s:13:\"5defa49e863ae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa49e863ae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa4487c019\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"14\";s:9:\"photo_src\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"78\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:14;s:5:\"title\";s:33:\"Browne_Henriette_-_A_Girl_Writing\";s:8:\"filename\";s:37:\"Browne_Henriette_-_A_Girl_Writing.jpg\";s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:4:\"link\";s:68:\"http://gwendowment.org/wordpress1/browne_henriette_-_a_girl_writing/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:33:\"browne_henriette_-_a_girl_writing\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316922000;s:8:\"modified\";d:1575316922000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"cbfdbac09b\";s:6:\"delete\";s:10:\"f6d9112811\";s:4:\"edit\";s:10:\"0c52ac4872\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=14&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1164538;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:235;s:5:\"width\";i:300;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-300x235.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:803;s:5:\"width\";i:1024;s:3:\"url\";s:107:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-1024x803.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa6476da2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6476da2f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"280\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa64780adc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa64780adc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6476da2f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa647847cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa647847cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa64780adc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa68337135\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68337135\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"670\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6834ded1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6834ded1\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa68337135\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa68351bc0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68351bc0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6834ded1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-50\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa692aebae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa692aebae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa68351bc0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:4:\"text\";s:290:\"<p style=\"text-align: center;\"><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i>\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986837297_text\";s:0:\"\";s:24:\"flrich1575986864207_text\";s:0:\"\";s:24:\"flrich1575987018674_text\";s:0:\"\";s:24:\"flrich1580161859153_text\";s:0:\"\";}}s:13:\"5defa6c87a58b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c87a58b\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:4;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:3:\"890\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6c88d635\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c88d635\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6c87a58b\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa6c891324\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c891324\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:36.850000000000001;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa6c895012\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c895012\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"63.15\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"60\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa6db0420a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6db0420a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c891324\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"15\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:15;s:5:\"title\";s:9:\"Eli_Broad\";s:8:\"filename\";s:13:\"Eli_Broad.jpg\";s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:4:\"link\";s:44:\"http://gwendowment.org/wordpress1/eli_broad/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:9:\"eli_broad\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316931000;s:8:\"modified\";d:1575316931000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"97e2e11f96\";s:6:\"delete\";s:10:\"bb92a16204\";s:4:\"edit\";s:10:\"3db9e3add6\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=15&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:9338;s:21:\"filesizeHumanReadable\";s:4:\"9 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:202;s:5:\"width\";i:300;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa704c89ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa704c89ba\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c895012\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:282:\"<span style=\"font-size: 14px; color: #808080;\">“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.”\n\n<span style=\"font-size:14px; color:#808080;\">- Eli Broad </span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986951424_text\";s:0:\"\";s:24:\"flrich1575987255360_text\";s:0:\"\";s:24:\"flrich1580161890254_text\";s:0:\"\";s:24:\"flrich1580161913017_text\";s:0:\"\";s:24:\"flrich1581100570325_text\";s:0:\"\";}}s:13:\"5e2f5808dc420\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5808dc420\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"946\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f580a09fdd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a09fdd\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5808dc420\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f580a0dccc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a0dccc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f580a09fdd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f58221b035\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f58221b035\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f580a0dccc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:4:\"text\";s:71:\"<h2 style=\"text-align: left;\"></h2>\n<h2 style=\"text-align: left;\"></h2>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:2:\"20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580161062185_text\";s:0:\"\";s:24:\"flrich1580161098815_text\";s:0:\"\";s:24:\"flrich1580161168623_text\";s:0:\"\";s:24:\"flrich1580161293055_text\";s:0:\"\";s:24:\"flrich1580161327619_text\";s:0:\"\";s:24:\"flrich1580161425665_text\";s:0:\"\";s:24:\"flrich1580161503018_text\";s:0:\"\";s:24:\"flrich1581095355305_text\";s:0:\"\";s:24:\"flrich1581095487519_text\";s:0:\"\";s:24:\"flrich1581095911342_text\";s:0:\"\";s:24:\"flrich1581096025954_text\";s:0:\"\";}}}'),(208,46,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(209,46,'_fl_builder_data','a:23:{s:13:\"5defa442b79ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442b79ad\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa442e54dc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e54dc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa442b79ad\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa442e91cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e91cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"73.03\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa4487c019\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa4487c019\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"26.97\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa46682ac2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa46682ac2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa442e91cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:1688:\"<h2 style=\"text-align: left;\">Investment & Impact</h2>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">Replenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”</span>\n\n<span style=\"font-size: 16px; color: #808080;\">Because the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:</span>\n<ul>\n <li><span style=\"font-size: 16px; color: #808080;\">Unusual Assets (such as a vehicle, work of art, or real estate),</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Wills or Trust Bequests,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Charitable Gift Annuities,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">IRA Rollover Gifts,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Appreciated Securities,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">The Gift of Life Insurance, and</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">A Charitable Remainder Trust.</span></li>\n</ul>\n<span style=\"font-size: 16px; color: #808080;\">Contributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986280828_text\";s:0:\"\";s:24:\"flrich1580160915873_text\";s:0:\"\";s:24:\"flrich1580160994089_text\";s:0:\"\";s:24:\"flrich1580161344480_text\";s:0:\"\";s:24:\"flrich1581095498524_text\";s:0:\"\";s:24:\"flrich1581095786968_text\";s:0:\"\";s:24:\"flrich1581096033906_text\";s:0:\"\";s:24:\"flrich1581096127044_text\";s:0:\"\";s:24:\"flrich1581096139577_text\";s:0:\"\";}}s:13:\"5defa49e863ae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa49e863ae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa4487c019\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"14\";s:9:\"photo_src\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"78\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:14;s:5:\"title\";s:33:\"Browne_Henriette_-_A_Girl_Writing\";s:8:\"filename\";s:37:\"Browne_Henriette_-_A_Girl_Writing.jpg\";s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:4:\"link\";s:68:\"http://gwendowment.org/wordpress1/browne_henriette_-_a_girl_writing/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:33:\"browne_henriette_-_a_girl_writing\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316922000;s:8:\"modified\";d:1575316922000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"cbfdbac09b\";s:6:\"delete\";s:10:\"f6d9112811\";s:4:\"edit\";s:10:\"0c52ac4872\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=14&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1164538;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:235;s:5:\"width\";i:300;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-300x235.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:803;s:5:\"width\";i:1024;s:3:\"url\";s:107:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-1024x803.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa6476da2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6476da2f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"280\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa64780adc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa64780adc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6476da2f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa647847cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa647847cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa64780adc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa68337135\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68337135\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"670\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6834ded1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6834ded1\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa68337135\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa68351bc0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68351bc0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6834ded1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-50\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa692aebae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa692aebae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa68351bc0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:4:\"text\";s:290:\"<p style=\"text-align: center;\"><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i>\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986837297_text\";s:0:\"\";s:24:\"flrich1575986864207_text\";s:0:\"\";s:24:\"flrich1575987018674_text\";s:0:\"\";s:24:\"flrich1580161859153_text\";s:0:\"\";}}s:13:\"5defa6c87a58b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c87a58b\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:4;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:3:\"890\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6c88d635\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c88d635\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6c87a58b\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa6c891324\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c891324\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:36.850000000000001;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa6c895012\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c895012\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"63.15\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"60\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa6db0420a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6db0420a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c891324\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"15\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:15;s:5:\"title\";s:9:\"Eli_Broad\";s:8:\"filename\";s:13:\"Eli_Broad.jpg\";s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:4:\"link\";s:44:\"http://gwendowment.org/wordpress1/eli_broad/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:9:\"eli_broad\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316931000;s:8:\"modified\";d:1575316931000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"97e2e11f96\";s:6:\"delete\";s:10:\"bb92a16204\";s:4:\"edit\";s:10:\"3db9e3add6\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=15&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:9338;s:21:\"filesizeHumanReadable\";s:4:\"9 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:202;s:5:\"width\";i:300;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa704c89ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa704c89ba\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c895012\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:282:\"<span style=\"font-size: 14px; color: #808080;\">“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.”\n\n<span style=\"font-size:14px; color:#808080;\">- Eli Broad </span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986951424_text\";s:0:\"\";s:24:\"flrich1575987255360_text\";s:0:\"\";s:24:\"flrich1580161890254_text\";s:0:\"\";s:24:\"flrich1580161913017_text\";s:0:\"\";s:24:\"flrich1581100570325_text\";s:0:\"\";}}s:13:\"5e2f5808dc420\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5808dc420\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"946\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f580a09fdd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a09fdd\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5808dc420\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f580a0dccc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a0dccc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f580a09fdd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f58221b035\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f58221b035\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f580a0dccc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:4:\"text\";s:71:\"<h2 style=\"text-align: left;\"></h2>\n<h2 style=\"text-align: left;\"></h2>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:2:\"20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580161062185_text\";s:0:\"\";s:24:\"flrich1580161098815_text\";s:0:\"\";s:24:\"flrich1580161168623_text\";s:0:\"\";s:24:\"flrich1580161293055_text\";s:0:\"\";s:24:\"flrich1580161327619_text\";s:0:\"\";s:24:\"flrich1580161425665_text\";s:0:\"\";s:24:\"flrich1580161503018_text\";s:0:\"\";s:24:\"flrich1581095355305_text\";s:0:\"\";s:24:\"flrich1581095487519_text\";s:0:\"\";s:24:\"flrich1581095911342_text\";s:0:\"\";s:24:\"flrich1581096025954_text\";s:0:\"\";}}}'),(210,46,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(211,46,'_fl_builder_enabled','1'),(212,72,'_fl_builder_data','a:20:{s:13:\"5defa442b79ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442b79ad\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa442e54dc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e54dc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa442b79ad\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa442e91cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e91cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"73.03\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa4487c019\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa4487c019\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"26.97\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa46682ac2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa46682ac2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa442e91cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:4:\"text\";s:1125:\"<p class=\"spanH\">Investment & Impact</p>\nReplenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”\n\nBecause the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:\n<ul>\n <li>Unusual Assets (such as a vehicle, work of art, or real estate),</li>\n <li>Wills or Trust Bequests,</li>\n <li>Charitable Gift Annuities,</li>\n <li>IRA Rollover Gifts,</li>\n <li>Appreciated Securities,</li>\n <li>The Gift of Life Insurance, and</li>\n <li>A Charitable Remainder Trust.</li>\n</ul>\nContributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986280828_text\";s:0:\"\";}}s:13:\"5defa49e863ae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa49e863ae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa4487c019\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"14\";s:9:\"photo_src\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:14;s:5:\"title\";s:33:\"Browne_Henriette_-_A_Girl_Writing\";s:8:\"filename\";s:37:\"Browne_Henriette_-_A_Girl_Writing.jpg\";s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:4:\"link\";s:68:\"http://gwendowment.org/wordpress1/browne_henriette_-_a_girl_writing/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:33:\"browne_henriette_-_a_girl_writing\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316922000;s:8:\"modified\";d:1575316922000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"7023230006\";s:6:\"delete\";s:10:\"01e80bc322\";s:4:\"edit\";s:10:\"0f7714ea66\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=14&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1164538;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:235;s:5:\"width\";i:300;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-300x235.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:803;s:5:\"width\";i:1024;s:3:\"url\";s:107:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-1024x803.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa61638f40\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa61638f40\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa647847cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:4:\"text\";s:426:\"<table>\n<tbody>\n<tr>\n<td align=\"center\"><form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\" /> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form></td>\n</tr>\n</tbody>\n</table>\n \";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986713891_text\";s:0:\"\";s:24:\"flrich1575986794868_text\";s:0:\"\";s:24:\"flrich1575986998857_text\";s:0:\"\";}}s:13:\"5defa6476da2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6476da2f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"280\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa64780adc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa64780adc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6476da2f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa647847cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa647847cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa64780adc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa68337135\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68337135\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"670\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6834ded1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6834ded1\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa68337135\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa68351bc0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68351bc0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6834ded1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa692aebae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa692aebae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa68351bc0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:4:\"text\";s:290:\"<p style=\"text-align: center;\"><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i>\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986837297_text\";s:0:\"\";s:24:\"flrich1575986864207_text\";s:0:\"\";s:24:\"flrich1575987018674_text\";s:0:\"\";}}s:13:\"5defa6c87a58b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c87a58b\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:4:\"2100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6c88d635\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c88d635\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6c87a58b\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa6c891324\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c891324\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"36.85\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa6c895012\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c895012\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"63.15\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa6db0420a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6db0420a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c891324\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"15\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:15;s:5:\"title\";s:9:\"Eli_Broad\";s:8:\"filename\";s:13:\"Eli_Broad.jpg\";s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:4:\"link\";s:44:\"http://gwendowment.org/wordpress1/eli_broad/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:9:\"eli_broad\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316931000;s:8:\"modified\";d:1575316931000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"97e2e11f96\";s:6:\"delete\";s:10:\"bb92a16204\";s:4:\"edit\";s:10:\"3db9e3add6\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=15&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:9338;s:21:\"filesizeHumanReadable\";s:4:\"9 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:202;s:5:\"width\";i:300;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa704c89ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa704c89ba\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c895012\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:4:\"text\";s:181:\"“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.” - Eli Broad\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986951424_text\";s:0:\"\";}}}'),(213,72,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(214,73,'_fl_builder_data','a:20:{s:13:\"5defa442b79ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442b79ad\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa442e54dc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e54dc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa442b79ad\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa442e91cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e91cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"73.03\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa4487c019\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa4487c019\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"26.97\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa46682ac2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa46682ac2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa442e91cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:4:\"text\";s:1125:\"<p class=\"spanH\">Investment & Impact</p>\nReplenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”\n\nBecause the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:\n<ul>\n <li>Unusual Assets (such as a vehicle, work of art, or real estate),</li>\n <li>Wills or Trust Bequests,</li>\n <li>Charitable Gift Annuities,</li>\n <li>IRA Rollover Gifts,</li>\n <li>Appreciated Securities,</li>\n <li>The Gift of Life Insurance, and</li>\n <li>A Charitable Remainder Trust.</li>\n</ul>\nContributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986280828_text\";s:0:\"\";}}s:13:\"5defa49e863ae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa49e863ae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa4487c019\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"14\";s:9:\"photo_src\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:14;s:5:\"title\";s:33:\"Browne_Henriette_-_A_Girl_Writing\";s:8:\"filename\";s:37:\"Browne_Henriette_-_A_Girl_Writing.jpg\";s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:4:\"link\";s:68:\"http://gwendowment.org/wordpress1/browne_henriette_-_a_girl_writing/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:33:\"browne_henriette_-_a_girl_writing\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316922000;s:8:\"modified\";d:1575316922000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"7023230006\";s:6:\"delete\";s:10:\"01e80bc322\";s:4:\"edit\";s:10:\"0f7714ea66\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=14&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1164538;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:235;s:5:\"width\";i:300;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-300x235.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:803;s:5:\"width\";i:1024;s:3:\"url\";s:107:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-1024x803.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa61638f40\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa61638f40\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa647847cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:4:\"text\";s:426:\"<table>\n<tbody>\n<tr>\n<td align=\"center\"><form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\" /> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form></td>\n</tr>\n</tbody>\n</table>\n \";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986713891_text\";s:0:\"\";s:24:\"flrich1575986794868_text\";s:0:\"\";s:24:\"flrich1575986998857_text\";s:0:\"\";}}s:13:\"5defa6476da2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6476da2f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"280\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa64780adc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa64780adc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6476da2f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa647847cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa647847cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa64780adc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa68337135\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68337135\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"670\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6834ded1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6834ded1\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa68337135\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa68351bc0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68351bc0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6834ded1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa692aebae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa692aebae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa68351bc0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:4:\"text\";s:290:\"<p style=\"text-align: center;\"><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i>\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986837297_text\";s:0:\"\";s:24:\"flrich1575986864207_text\";s:0:\"\";s:24:\"flrich1575987018674_text\";s:0:\"\";}}s:13:\"5defa6c87a58b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c87a58b\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:4:\"2100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6c88d635\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c88d635\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6c87a58b\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa6c891324\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c891324\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"36.85\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa6c895012\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c895012\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"63.15\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa6db0420a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6db0420a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c891324\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"15\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:15;s:5:\"title\";s:9:\"Eli_Broad\";s:8:\"filename\";s:13:\"Eli_Broad.jpg\";s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:4:\"link\";s:44:\"http://gwendowment.org/wordpress1/eli_broad/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:9:\"eli_broad\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316931000;s:8:\"modified\";d:1575316931000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"97e2e11f96\";s:6:\"delete\";s:10:\"bb92a16204\";s:4:\"edit\";s:10:\"3db9e3add6\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=15&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:9338;s:21:\"filesizeHumanReadable\";s:4:\"9 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:202;s:5:\"width\";i:300;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa704c89ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa704c89ba\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c895012\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":32:{s:4:\"text\";s:181:\"“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.” - Eli Broad\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986951424_text\";s:0:\"\";s:24:\"flrich1575987255360_text\";s:0:\"\";}}}'),(215,73,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(222,56,'_fl_builder_draft','a:11:{s:13:\"5e330b418d386\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b418d386\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1114\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b4191075\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4191075\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e330b418d386\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e330b4194d65\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4194d65\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e330b4191075\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b666b520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b666b520\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e330b4194d65\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":56:{s:4:\"text\";s:1912:\"<h2>Education – The Birthright of Every Child</h2>\n\n<hr />\n\n<img class=\"size-full wp-image-83 alignright\" src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" />\n\n<span style=\"color: #808080; font-size: 18px;\">Every boy and girl born under heaven, of whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">The very best schools understand that enabling this wonderful process—this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.” </span>\n\n<span style=\"font-size: 18px; color: #808080;\">Faithfully,\nT. Robinson Ahlstrom - Chairman</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580403560441_text\";s:0:\"\";s:24:\"flrich1580403643677_text\";s:0:\"\";s:24:\"flrich1580403672359_text\";s:0:\"\";s:24:\"flrich1580404810052_text\";s:0:\"\";s:24:\"flrich1580405135309_text\";s:0:\"\";s:24:\"flrich1580405328584_text\";s:0:\"\";s:24:\"flrich1580406445376_text\";s:0:\"\";s:24:\"flrich1580406501486_text\";s:0:\"\";s:24:\"flrich1580406777884_text\";s:0:\"\";s:24:\"flrich1581026176694_text\";s:0:\"\";s:24:\"flrich1581026343922_text\";s:0:\"\";s:24:\"flrich1581026426115_text\";s:0:\"\";s:24:\"flrich1581026583916_text\";s:0:\"\";s:24:\"flrich1581026792428_text\";s:0:\"\";s:24:\"flrich1581027065631_text\";s:0:\"\";s:24:\"flrich1581027126736_text\";s:0:\"\";s:24:\"flrich1581027239411_text\";s:0:\"\";s:24:\"flrich1581028280748_text\";s:0:\"\";s:24:\"flrich1581029071269_text\";s:0:\"\";s:24:\"flrich1581030577877_text\";s:0:\"\";s:24:\"flrich1581030622674_text\";s:0:\"\";s:24:\"flrich1581030759972_text\";s:0:\"\";s:24:\"flrich1581113566985_text\";s:0:\"\";s:24:\"flrich1581115571537_text\";s:0:\"\";}}s:13:\"5e3c90b5d1e4c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d1e4c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"F5F2FD\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:1:\"2\";s:9:\"top_right\";s:1:\"2\";s:11:\"bottom_left\";s:1:\"2\";s:12:\"bottom_right\";s:1:\"2\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c90b5d98d8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d98d8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d1e4c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c90b5d9c57\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d9c57\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c90b5d98d8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c919a5c069\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c919a5c069\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:4:\"text\";s:152:\"<h4>\"Give children in need a chance at the very best education through GW Scholars Fund and help them become the people that God meant them to be.\"</h4>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1581027740534_text\";s:0:\"\";}}s:13:\"5e3c93e26e819\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26e819\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c93e26eb00\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26eb00\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c93e26e819\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c941c545de\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c941c545de\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c93e26eb00\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":104:{s:5:\"title\";s:10:\"Donate Now\";s:9:\"title_tag\";s:2:\"h3\";s:4:\"text\";s:132:\"<span style=\"font-size: 16px; color: #ffffff;\">Because a great education, full of wonder and awe, is the birthright of all. </span>\";s:6:\"layout\";s:6:\"inline\";s:8:\"bg_color\";s:6:\"4b5887\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:9:\"alignment\";s:6:\"center\";s:11:\"title_color\";s:0:\"\";s:16:\"title_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:23:\"title_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:27:\"title_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:22:\"text_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:26:\"text_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"btn_text\";s:6:\"Donate\";s:8:\"btn_link\";s:52:\"http://gwendowment.org/wordpress1/investment-impact/\";s:15:\"btn_link_target\";s:5:\"_self\";s:17:\"btn_link_nofollow\";s:2:\"no\";s:8:\"btn_icon\";s:20:\"fas fa-user-graduate\";s:14:\"btn_duo_color1\";s:0:\"\";s:14:\"btn_duo_color2\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:21:\"btn_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"btn_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"btn_button_transition\";s:7:\"disable\";s:17:\"btn_border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:21:\"btn_border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:6:\"donate\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:16:\"wrap_padding_top\";s:2:\"19\";s:17:\"wrap_padding_unit\";s:2:\"px\";s:23:\"wrap_padding_top_medium\";s:0:\"\";s:24:\"wrap_padding_medium_unit\";s:2:\"px\";s:27:\"wrap_padding_top_responsive\";s:0:\"\";s:28:\"wrap_padding_responsive_unit\";s:2:\"px\";s:18:\"wrap_padding_right\";s:2:\"19\";s:25:\"wrap_padding_right_medium\";s:0:\"\";s:29:\"wrap_padding_right_responsive\";s:0:\"\";s:19:\"wrap_padding_bottom\";s:2:\"19\";s:26:\"wrap_padding_bottom_medium\";s:0:\"\";s:30:\"wrap_padding_bottom_responsive\";s:0:\"\";s:17:\"wrap_padding_left\";s:2:\"19\";s:24:\"wrap_padding_left_medium\";s:0:\"\";s:28:\"wrap_padding_left_responsive\";s:0:\"\";s:22:\"btn_padding_top_medium\";s:0:\"\";s:26:\"btn_padding_top_responsive\";s:0:\"\";s:24:\"btn_padding_right_medium\";s:0:\"\";s:28:\"btn_padding_right_responsive\";s:0:\"\";s:25:\"btn_padding_bottom_medium\";s:0:\"\";s:29:\"btn_padding_bottom_responsive\";s:0:\"\";s:23:\"btn_padding_left_medium\";s:0:\"\";s:27:\"btn_padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:3:\"cta\";s:11:\"connections\";a:12:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"title_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:8:\"btn_text\";s:0:\"\";s:8:\"btn_link\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:22:\"btn_border_hover_color\";s:0:\"\";}s:15:\"btn_link-search\";s:0:\"\";s:24:\"flrich1581028382968_text\";s:0:\"\";s:25:\"as_values_btn_link-search\";s:0:\"\";s:24:\"flrich1581028740781_text\";s:0:\"\";s:24:\"flrich1581028867231_text\";s:0:\"\";s:24:\"flrich1581029256280_text\";s:0:\"\";s:24:\"flrich1581029501115_text\";s:0:\"\";s:24:\"flrich1581029719309_text\";s:0:\"\";s:24:\"flrich1581029992142_text\";s:0:\"\";s:24:\"flrich1581095090626_text\";s:0:\"\";s:24:\"flrich1581112719187_text\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_padding_top\";s:0:\"\";s:18:\"btn_padding_bottom\";s:0:\"\";s:16:\"btn_padding_left\";s:0:\"\";s:17:\"btn_padding_right\";s:0:\"\";s:14:\"btn_typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:10:\"btn_border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:22:\"btn_border_hover_color\";s:0:\"\";}}}'),(223,56,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:28:\".donate h3 {color: white;}\r\n\";s:2:\"js\";s:0:\"\";}'),(224,39,'_fl_builder_draft','a:12:{s:13:\"5e2f1657a010e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1657a010e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f1ab15d915\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":44:{s:4:\"text\";s:1544:\" \n<h2 style=\"color: #4b5887;\"><strong>Leadership & Teamwork</strong></span></h2>\n<h4 style=\"color: #4b5887;\"> <b>Board of Governors and Visitors</b></h4>\n\n<hr />\n\nT. Robinson Ahlstrom, Bloomfield Hills, MI\n<i>Chairman & CEO, GW Scholars Endowment\nChair, Executive Committee</i>\n\nJames Caraher, Chicago, IL\n<i>Principal, Caraher Corporation\nChair, Real Estate Committee</i>\n\nDean A. Christiansen, New York, NY\n<i>Principal, Acacia Capital</i>\n\nGeorge Cranmer, Oxfordshire, England\n<i>Director, Cranmer Lawrence, LTD</i>\n\nJerome F. Dausman, Hamilton, NJ\n<i>Director of Analytics, The Detroit Latin School\nInterim Treasurer</i>\n\nPaul Evans, Cincinnati, OH\n<i>Director of Investments, Rosetta Partners</i>\n\nRonald Gardhouse\n<i>V.P. Chrysler Corporation (Ret.)\nChair, Budget & Finance Committee</i>\n\nJae Gardner, New York, NY\n<i>Founder & President, The Ivy Key</i>\n\nDr. Arnold A. Kummerow\n<i>Superintendent, Armada (MI) Area Schools (Ret.)</i>\n\nJohn Lind, Huntington Beach, CA\n<i>President, Lind & Associates\nChair, Enterprise & Development Committee</i>\n\nAndrew Lucaciu, Washington, DC\n<i>Senior Program Analyst, F.E.M.A.</i>\n\nF. Landey Patton, Lexington, VA\n<i>Innkeeper, The Abigail Inn</i>\n\nKymberly Peer, Bloomfield Hills, MI\n<i>Buyer/Director of Operations, Sposa Bella Couture Enterprise & Development Committee</i>\n\nDr. James Tooley, Manchester, England\n<i>Professor of Education Policy, Newcastle University</i>\n\nCurt Welling, Norwich, VT\n<i>Senior Fellow, Tuck School of Management, Dartmouth College</i>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"-25\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580144220065_text\";s:0:\"\";s:24:\"flrich1580144596978_text\";s:0:\"\";s:24:\"flrich1580144657273_text\";s:0:\"\";s:24:\"flrich1580144692076_text\";s:0:\"\";s:24:\"flrich1580145075258_text\";s:0:\"\";s:24:\"flrich1580145092551_text\";s:0:\"\";s:24:\"flrich1580145286675_text\";s:0:\"\";s:24:\"flrich1581098144997_text\";s:0:\"\";s:24:\"flrich1581098387235_text\";s:0:\"\";s:24:\"flrich1581098583501_text\";s:0:\"\";s:24:\"flrich1581098668122_text\";s:0:\"\";s:24:\"flrich1581098710208_text\";s:0:\"\";}}s:13:\"5e2f16b974e78\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f16b974e78\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f1ab1652f3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"13\";s:9:\"photo_src\";s:111:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:4:\"4000\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:13;s:5:\"title\";s:31:\"Biglin_Brothers_Racing_1148x294\";s:8:\"filename\";s:50:\"Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\";s:3:\"url\";s:111:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\";s:4:\"link\";s:66:\"http://gwendowment.org/wordpress1/biglin_brothers_racing_1148x294/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"biglin_brothers_racing_1148x294\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316901000;s:8:\"modified\";d:1580148205000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"f0e2e32731\";s:6:\"delete\";s:10:\"26d3d2e87c\";s:4:\"edit\";s:10:\"7301ab0582\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=13&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:178928;s:21:\"filesizeHumanReadable\";s:6:\"175 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:642;s:5:\"width\";i:1145;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:119:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:168;s:5:\"width\";i:300;s:3:\"url\";s:119:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746-300x168.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:574;s:5:\"width\";i:1024;s:3:\"url\";s:120:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746-1024x574.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:111:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\";s:6:\"height\";i:642;s:5:\"width\";i:1145;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f1ab14a868\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab14a868\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f1ab155f36\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab155f36\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f1ab14a868\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f1ab159c25\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab159c25\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f1ab155f36\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:1:\"8\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f1ab15d915\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab15d915\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f1ab155f36\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"20.97\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f1ab1652f3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab1652f3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f1ab155f36\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"71.03\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f1bdbe510f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1bdbe510f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f2bb632221\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"28\";s:9:\"photo_src\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:28;s:5:\"title\";s:14:\"Vince_Lombardi\";s:8:\"filename\";s:18:\"Vince_Lombardi.jpg\";s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi.jpg\";s:4:\"link\";s:49:\"http://gwendowment.org/wordpress1/vince_lombardi/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:141:\"“People who work together will win, whether it be against complex football defenses, or the problems of modern society.” - Vince Lombardi\";s:4:\"name\";s:14:\"vince_lombardi\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575317063000;s:8:\"modified\";d:1580145872000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"9343b4d6dd\";s:6:\"delete\";s:10:\"2f5c5d6c20\";s:4:\"edit\";s:10:\"29a6694832\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=28&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:10109;s:21:\"filesizeHumanReadable\";s:5:\"10 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:225;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:225;s:5:\"width\";i:300;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi-300x225.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi.jpg\";s:6:\"height\";i:225;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f2695d3c6b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f2695d3c6b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f2bb635f11\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:4:\"text\";s:192:\"<span style = \"font-size: 14px; color: #808080;\"<strong>\"People who work together will win, whether it be against complex football defenses, or the problems of modern society.\"</strong></span>\";s:5:\"color\";s:6:\"cccccc\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580148379175_text\";s:0:\"\";s:24:\"flrich1580149223748_text\";s:0:\"\";s:24:\"flrich1580149290492_text\";s:0:\"\";s:24:\"flrich1580149374371_text\";s:0:\"\";s:24:\"flrich1580149773557_text\";s:0:\"\";s:24:\"flrich1580150026996_text\";s:0:\"\";s:24:\"flrich1580150082296_text\";s:0:\"\";s:24:\"flrich1580150142794_text\";s:0:\"\";s:24:\"flrich1581098276316_text\";s:0:\"\";s:24:\"flrich1581098303945_text\";s:0:\"\";}}s:13:\"5e2f2bb62e532\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f2bb62e532\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f1ab1652f3\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f2bb632221\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f2bb632221\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f2bb62e532\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:33.340000000000003;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"60\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e2f2bb635f11\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f2bb635f11\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f2bb62e532\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"66.66\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"140\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}}'),(225,39,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(226,13,'_edit_lock','1580148052:1'),(227,75,'_wp_attached_file','2020/01/newracingbrothers-e1580148002530.jpg'),(228,75,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:220;s:4:\"file\";s:44:\"2020/01/newracingbrothers-e1580148002530.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"newracingbrothers-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:29:\"newracingbrothers-300x165.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:165;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:{}}}'),(229,75,'_edit_lock','1580147888:1'),(230,75,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:400;s:6:\"height\";i:220;s:4:\"file\";s:21:\"newracingbrothers.jpg\";}}'),(231,75,'_edit_last','1'),(232,13,'_edit_last','1'),(233,13,'_wp_attachment_backup_sizes','a:5:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1148;s:6:\"height\";i:759;s:4:\"file\";s:35:\"Biglin_Brothers_Racing_1148x294.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:43:\"Biglin_Brothers_Racing_1148x294-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:43:\"Biglin_Brothers_Racing_1148x294-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:43:\"Biglin_Brothers_Racing_1148x294-768x508.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:44:\"Biglin_Brothers_Racing_1148x294-1024x677.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:677;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(234,44,'_fl_builder_draft','a:12:{s:13:\"5e2f4faf046bf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf046bf\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f4faf0c09e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf0c09e\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f4faf046bf\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f4faf0fd8d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf0fd8d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f4faf0c09e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"31.33\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f4faf13a7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf13a7c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f4faf0c09e\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"68.67\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f514e42475\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f514e42475\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f4faf0fd8d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"24\";s:9:\"photo_src\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"85\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:24;s:5:\"title\";s:14:\"Rockwell-Large\";s:8:\"filename\";s:18:\"Rockwell-Large.jpg\";s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:4:\"link\";s:49:\"http://gwendowment.org/wordpress1/rockwell-large/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:14:\"rockwell-large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316978000;s:8:\"modified\";d:1575316978000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"482f126b6f\";s:6:\"delete\";s:10:\"36eaf4a3e8\";s:4:\"edit\";s:10:\"7ecb2a2d3c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=24&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1502959;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1481;s:5:\"width\";i:2400;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:185;s:5:\"width\";i:300;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-300x185.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:632;s:5:\"width\";i:1024;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-1024x632.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:6:\"height\";i:1481;s:5:\"width\";i:2400;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f51fa41c2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f51fa41c2f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f4faf13a7c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":38:{s:4:\"text\";s:2636:\"<h2 style=\"text-align: center;\">Quality and Equality</h2>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">Across the United States, too many K-12 schools are failing too many students. Two out of three eighth-graders can’t read proficiently. Two out of three score below proficient in math. Seventy-five percent of students are not proficient in civics. Nearly three out of four 12th-grade students cannot write proficiently. More than one million American students drop out of school every year and only one in four who do graduate from high school are ready for college in the four core subjects of English, reading, math and science.\n</span>\n<span style=\"font-size: 16px; color: #808080;\">American students now rank 25th in math, 17th in science and 14th in reading compared to students in 27 industrialized countries. Still more troubling is that fact that a longitudinal study of PISA results indicates that America’s high school students are continuing to fall further and further behind.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">And, in America’s K-12 schools, quality is not the only issue. Equality has proven to be an equally elusive goal. According to a 2009 Civil Rights Project report published by the Regents of the University of California, “Fifty-five years after the Brown decision, blacks and Latinos in American schools are more segregated than they have been in four decades.” The results are devastating. For African-American and Hispanic students across the country, dropout rates are close to 40 percent, compared to the national average of 27 percent. Only 4 percent of African American students and 11 percent of Hispanic students who do finish high school are ready for college in their core subjects.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">In fact, access to quality education is a global challenge. It is the next great civil right. In the area of education, many of the 2015 Millennial Development Goals set by the United Nations were not met—especially in Sub-Saharan Africa. According to a UNESCO report published at the September 8th (2014) Conference on Literacy and Sustainable Development, “Poor quality education is leaving a legacy of illiteracy more widespread than previously believed: one in four young people—175 million adolescents—is unable to read a single sentence.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">The Endowment exists solely to “provide direct aid to worthy scholars.” Whether here in the United States or abroad, its mission is to redeem what Thomas Jefferson called, “genius buried in poverty.”</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580159486313_text\";s:0:\"\";s:24:\"flrich1580159514030_text\";s:0:\"\";s:24:\"flrich1580159541781_text\";s:0:\"\";s:24:\"flrich1581096501123_text\";s:0:\"\";s:24:\"flrich1581096594369_text\";s:0:\"\";s:24:\"flrich1581096865553_text\";s:0:\"\";}}s:13:\"5e2f5351d9773\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351d9773\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"698\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f5351ec820\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351ec820\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5351d9773\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f5351f050f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351f050f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f5351ec820\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"47.45\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"56\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e2f5351f41fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351f41fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f5351ec820\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:52.549999999999997;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f536e002a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f536e002a6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f5351f41fe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"22\";s:9:\"photo_src\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:22;s:5:\"title\";s:15:\"Robert_Hutchins\";s:8:\"filename\";s:19:\"Robert_Hutchins.jpg\";s:3:\"url\";s:80:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins.jpg\";s:4:\"link\";s:50:\"http://gwendowment.org/wordpress1/robert_hutchins/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"robert_hutchins\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316950000;s:8:\"modified\";d:1575316950000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b854b98f40\";s:6:\"delete\";s:10:\"d31aa3792a\";s:4:\"edit\";s:10:\"3ca4787f1f\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=22&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:19878;s:21:\"filesizeHumanReadable\";s:5:\"19 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:412;s:5:\"width\";i:518;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:239;s:5:\"width\";i:300;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:80:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins.jpg\";s:6:\"height\";i:412;s:5:\"width\";i:518;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f53d2d35d8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f53d2d35d8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f5351f050f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:273:\" \n<table>\n<tbody>\n<tr>\n<td valign=\"right\"><span style=\"font-size: 16px;\">“The Education that is best for the best is the education that is best for all.” </span>\n\n<span style=\"font-size: 16px;\">— Robert Maynard Hutchins</span></td>\n</tr>\n</tbody>\n</table>\n \";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580159958920_text\";s:0:\"\";s:24:\"flrich1580160044732_text\";s:0:\"\";s:24:\"flrich1581096971992_text\";s:0:\"\";s:24:\"flrich1581096998497_text\";s:0:\"\";s:24:\"flrich1581097348706_text\";s:0:\"\";s:24:\"flrich1581097434321_text\";s:0:\"\";s:24:\"flrich1581097493577_text\";s:0:\"\";}}}'),(235,44,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(236,76,'_edit_last','1'),(237,76,'_wp_page_template','default'),(238,76,'_edit_lock','1581700641:1'),(239,76,'_fl_builder_draft','a:16:{s:13:\"5e3c4e59c908e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c908e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":142:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c4e59c9099\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c9099\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c908e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90a0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c9099\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"10\";s:9:\"top_right\";s:2:\"10\";s:11:\"bottom_left\";s:2:\"10\";s:12:\"bottom_right\";s:2:\"10\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90a9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":73:{s:4:\"text\";s:12:\"Find out how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:59:\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"duo_color1\";s:0:\"\";s:10:\"duo_color2\";s:0:\"\";s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c4e59c90ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90ad\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c90ad\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:3:\"100\";s:15:\"size_responsive\";s:3:\"100\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"32\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90b2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":77:{s:4:\"text\";s:156:\"<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 45px;\"><em>Discover and develop genius buried in poverty.</em></span></p>\";s:5:\"color\";s:6:\"e8e8e8\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"190\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";s:24:\"flrich1581011019155_text\";s:0:\"\";s:24:\"flrich1581011050367_text\";s:0:\"\";s:24:\"flrich1581013921071_text\";s:0:\"\";s:24:\"flrich1581013971763_text\";s:0:\"\";s:24:\"flrich1581024806923_text\";s:0:\"\";s:24:\"flrich1581024846716_text\";s:0:\"\";s:24:\"flrich1581024987925_text\";s:0:\"\";s:24:\"flrich1581025004526_text\";s:0:\"\";s:24:\"flrich1581031573330_text\";s:0:\"\";s:24:\"flrich1581031699580_text\";s:0:\"\";s:24:\"flrich1581031805420_text\";s:0:\"\";s:24:\"flrich1581031918231_text\";s:0:\"\";s:24:\"flrich1581033525614_text\";s:0:\"\";s:24:\"flrich1581033650175_text\";s:0:\"\";s:24:\"flrich1581033842313_text\";s:0:\"\";s:24:\"flrich1581033948047_text\";s:0:\"\";s:24:\"flrich1581034131482_text\";s:0:\"\";s:24:\"flrich1581034160102_text\";s:0:\"\";s:24:\"flrich1581034416371_text\";s:0:\"\";s:24:\"flrich1581099007208_text\";s:0:\"\";s:24:\"flrich1581099115892_text\";s:0:\"\";s:24:\"flrich1581099720891_text\";s:0:\"\";s:24:\"flrich1581100055532_text\";s:0:\"\";s:24:\"flrich1581100276169_text\";s:0:\"\";s:24:\"flrich1581114371000_text\";s:0:\"\";s:24:\"flrich1581114924101_text\";s:0:\"\";s:24:\"flrich1581115222012_text\";s:0:\"\";s:24:\"flrich1581115259466_text\";s:0:\"\";}}s:13:\"5e3c509278f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c509278f9f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:3:\"150\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5092894d9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5092894d9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c50928988a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c50928988a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:43.93;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c51e8b9546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c51e8b9546\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c50928988a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"cccccc\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b286c8c576\";s:6:\"delete\";s:10:\"5134a89e91\";s:4:\"edit\";s:10:\"99ffdd8e1c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e3c523ae1fcb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c523ae1fcb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"56.07\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:6:\"ffffff\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"17\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c525fdd3b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c525fdd3b2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c523ae1fcb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:12:\"mobile_title\";s:4:\"Menu\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"f4f4f4\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5e3c54857e283\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e283\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c54857e636\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e636\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c54857e283\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-40\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c54857e08a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e08a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c54857e636\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"39\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(240,76,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:56:\".fl-page-header{display: none;}\r\n.fl-menu {body: white;}\";s:2:\"js\";s:0:\"\";}'),(241,60,'_edit_lock','1581699301:1'),(242,79,'_fl_builder_enabled','1'),(243,79,'_fl_theme_layout_type','header'),(244,79,'_fl_builder_data','a:12:{s:13:\"5e306beceb470\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306beceb470\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":80:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:6:\"296BC9\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"connections\";a:3:{s:8:\"bg_image\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";}}}s:13:\"5e306becef15f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306becef15f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e306beceb470\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e306becf2e4f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306becf2e4f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306becef15f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"size\";s:2:\"35\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"1\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"1\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:6:\"custom\";s:22:\"custom_responsive_size\";s:2:\"80\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e306bed028fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed028fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306becef15f\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"size\";d:65;s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"1\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"1\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:6:\"custom\";s:22:\"custom_responsive_size\";s:2:\"20\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e306bed065ee\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed065ee\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306becf2e4f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:7:\"heading\";s:4:\"Logo\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"ffffff\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:7:\"regular\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"36\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"connections\";a:2:{s:7:\"heading\";O:8:\"stdClass\":4:{s:6:\"object\";s:4:\"site\";s:8:\"property\";s:5:\"title\";s:5:\"field\";s:4:\"text\";s:8:\"settings\";N;}s:4:\"link\";O:8:\"stdClass\":4:{s:6:\"object\";s:4:\"site\";s:8:\"property\";s:3:\"url\";s:5:\"field\";s:4:\"link\";s:8:\"settings\";N;}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e306bed0a2dd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed0a2dd\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306bed028fe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":45:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:6:\"arrows\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:17:\"mobile_full_width\";s:5:\"below\";s:10:\"menu_align\";s:5:\"right\";s:11:\"drop_shadow\";s:3:\"yes\";s:10:\"link_color\";s:6:\"f5f5f5\";s:16:\"link_hover_color\";s:6:\"c9deed\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"text_size\";s:2:\"16\";s:14:\"text_transform\";s:4:\"none\";s:18:\"horizontal_spacing\";s:2:\"14\";s:16:\"vertical_spacing\";s:2:\"14\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:15:\"menu_bg_opacity\";s:3:\"100\";s:16:\"submenu_bg_color\";s:6:\"296BC9\";s:18:\"submenu_bg_opacity\";s:3:\"100\";s:19:\"link_hover_bg_color\";s:6:\"215fb5\";s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:0:\"\";s:17:\"separator_opacity\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:4:\"menu\";}}s:13:\"5e306bed0dfcd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed0dfcd\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":80:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:6:\"ffffff\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:14:\"desktop-medium\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"connections\";a:3:{s:8:\"bg_image\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";}}}s:13:\"5e306bed11cbc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed11cbc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e306bed0dfcd\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e306bed159ac\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed159ac\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306bed11cbc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"size\";s:2:\"50\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"1\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"1\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e306bed1969b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed1969b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306bed11cbc\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"size\";d:50;s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"1\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"1\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e306bed1d38b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed1d38b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306bed1969b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:5:\"icons\";a:6:{i:0;O:8:\"stdClass\":9:{s:4:\"icon\";s:17:\"fab fa-facebook-f\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:1:\"0\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":8:{s:4:\"icon\";s:14:\"fab fa-twitter\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:2;O:8:\"stdClass\":8:{s:4:\"icon\";s:18:\"fab fa-pinterest-p\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:3;O:8:\"stdClass\":8:{s:4:\"icon\";s:11:\"fab fa-yelp\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:4;O:8:\"stdClass\":8:{s:4:\"icon\";s:15:\"fab fa-linkedin\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:5;O:8:\"stdClass\":8:{s:4:\"icon\";s:18:\"fab fa-google-plus\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:6:\"7f7f7f\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";s:2:\"16\";s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:5:\"right\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5e306bed2107a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed2107a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306bed159ac\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"html\";s:36:\"1-800-999-9999 — hi@loremipsum.com\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:4:\"html\";s:11:\"connections\";a:1:{s:4:\"html\";s:0:\"\";}}}}'),(245,79,'_fl_builder_draft','a:12:{s:13:\"5e306beceb470\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306beceb470\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":80:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:6:\"296BC9\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"connections\";a:3:{s:8:\"bg_image\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";}}}s:13:\"5e306becef15f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306becef15f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e306beceb470\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e306becf2e4f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306becf2e4f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306becef15f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"size\";s:2:\"35\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"1\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"1\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:6:\"custom\";s:22:\"custom_responsive_size\";s:2:\"80\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e306bed028fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed028fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306becef15f\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"size\";d:65;s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"1\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"1\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:6:\"custom\";s:22:\"custom_responsive_size\";s:2:\"20\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e306bed065ee\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed065ee\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306becf2e4f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:7:\"heading\";s:4:\"Logo\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"ffffff\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:7:\"regular\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"36\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"connections\";a:2:{s:7:\"heading\";O:8:\"stdClass\":4:{s:6:\"object\";s:4:\"site\";s:8:\"property\";s:5:\"title\";s:5:\"field\";s:4:\"text\";s:8:\"settings\";N;}s:4:\"link\";O:8:\"stdClass\":4:{s:6:\"object\";s:4:\"site\";s:8:\"property\";s:3:\"url\";s:5:\"field\";s:4:\"link\";s:8:\"settings\";N;}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e306bed0a2dd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed0a2dd\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306bed028fe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":45:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:6:\"arrows\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:17:\"mobile_full_width\";s:5:\"below\";s:10:\"menu_align\";s:5:\"right\";s:11:\"drop_shadow\";s:3:\"yes\";s:10:\"link_color\";s:6:\"f5f5f5\";s:16:\"link_hover_color\";s:6:\"c9deed\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"text_size\";s:2:\"16\";s:14:\"text_transform\";s:4:\"none\";s:18:\"horizontal_spacing\";s:2:\"14\";s:16:\"vertical_spacing\";s:2:\"14\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:15:\"menu_bg_opacity\";s:3:\"100\";s:16:\"submenu_bg_color\";s:6:\"296BC9\";s:18:\"submenu_bg_opacity\";s:3:\"100\";s:19:\"link_hover_bg_color\";s:6:\"215fb5\";s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:0:\"\";s:17:\"separator_opacity\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:4:\"menu\";}}s:13:\"5e306bed0dfcd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed0dfcd\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":80:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:6:\"ffffff\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:14:\"desktop-medium\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"connections\";a:3:{s:8:\"bg_image\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";}}}s:13:\"5e306bed11cbc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed11cbc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e306bed0dfcd\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e306bed159ac\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed159ac\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306bed11cbc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"size\";s:2:\"50\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"1\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"1\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e306bed1969b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed1969b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306bed11cbc\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"size\";d:50;s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"1\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"1\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e306bed1d38b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed1d38b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306bed1969b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":29:{s:5:\"icons\";a:6:{i:0;O:8:\"stdClass\":9:{s:4:\"icon\";s:17:\"fab fa-facebook-f\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:1:\"0\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":8:{s:4:\"icon\";s:14:\"fab fa-twitter\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:2;O:8:\"stdClass\":8:{s:4:\"icon\";s:18:\"fab fa-pinterest-p\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:3;O:8:\"stdClass\":8:{s:4:\"icon\";s:11:\"fab fa-yelp\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:4;O:8:\"stdClass\":8:{s:4:\"icon\";s:15:\"fab fa-linkedin\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:5;O:8:\"stdClass\":8:{s:4:\"icon\";s:18:\"fab fa-google-plus\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:6:\"7f7f7f\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";s:2:\"16\";s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:5:\"right\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5e306bed2107a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed2107a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306bed159ac\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"html\";s:36:\"1-800-999-9999 — hi@loremipsum.com\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:4:\"html\";s:11:\"connections\";a:1:{s:4:\"html\";s:0:\"\";}}}}'),(246,79,'_edit_lock','1580231663:1'),(247,79,'_wp_trash_meta_status','draft'),(248,79,'_wp_trash_meta_time','1580231678'),(249,79,'_wp_desired_post_slug',''),(250,80,'_fl_builder_data','a:12:{s:13:\"5e306beceb470\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306beceb470\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:6:\"296BC9\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:3:{s:8:\"bg_image\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";}}}s:13:\"5e306becef15f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306becef15f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e306beceb470\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e306becf2e4f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306becf2e4f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306becef15f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";s:2:\"35\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e306bed028fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed028fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306becef15f\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:65;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"20\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e306bed065ee\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed065ee\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306becf2e4f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:7:\"heading\";s:4:\"Logo\";s:3:\"tag\";s:2:\"h1\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:4:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:7:\"regular\";s:10:\"text_align\";s:4:\"left\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"36\";s:4:\"unit\";s:2:\"px\";}}s:17:\"typography_medium\";a:0:{}s:21:\"typography_responsive\";a:0:{}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"connections\";a:2:{s:7:\"heading\";O:8:\"stdClass\":4:{s:6:\"object\";s:4:\"site\";s:8:\"property\";s:5:\"title\";s:5:\"field\";s:4:\"text\";s:8:\"settings\";N;}s:4:\"link\";O:8:\"stdClass\":4:{s:6:\"object\";s:4:\"site\";s:8:\"property\";s:3:\"url\";s:5:\"field\";s:4:\"link\";s:8:\"settings\";N;}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e306bed0a2dd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed0a2dd\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306bed028fe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:6:\"arrows\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:5:\"below\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"f5f5f5\";s:16:\"link_hover_color\";s:6:\"c9deed\";s:19:\"link_hover_bg_color\";s:6:\"215fb5\";s:10:\"typography\";a:4:{s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:14:\"text_transform\";s:4:\"none\";}s:17:\"typography_medium\";s:0:\"\";s:21:\"typography_responsive\";s:0:\"\";s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:6:\"296BC9\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:15:\"menu_bg_opacity\";d:150;s:17:\"separator_opacity\";s:3:\"100\";s:22:\"mobile_menu_bg_opacity\";d:150;}}s:13:\"5e306bed0dfcd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed0dfcd\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:6:\"ffffff\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:14:\"desktop-medium\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:3:{s:8:\"bg_image\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";}}}s:13:\"5e306bed11cbc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed11cbc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e306bed0dfcd\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e306bed159ac\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed159ac\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306bed11cbc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";s:2:\"50\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e306bed1969b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed1969b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306bed11cbc\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:50;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e306bed1d38b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed1d38b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306bed1969b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":38:{s:5:\"icons\";a:6:{i:0;O:8:\"stdClass\":10:{s:4:\"icon\";s:17:\"fab fa-facebook-f\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:13:\"link_nofollow\";s:2:\"no\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:1:\"0\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":9:{s:4:\"icon\";s:14:\"fab fa-twitter\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:13:\"link_nofollow\";s:2:\"no\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:2;O:8:\"stdClass\":9:{s:4:\"icon\";s:18:\"fab fa-pinterest-p\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:13:\"link_nofollow\";s:2:\"no\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:3;O:8:\"stdClass\":9:{s:4:\"icon\";s:11:\"fab fa-yelp\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:13:\"link_nofollow\";s:2:\"no\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:4;O:8:\"stdClass\":9:{s:4:\"icon\";s:15:\"fab fa-linkedin\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:13:\"link_nofollow\";s:2:\"no\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:5;O:8:\"stdClass\":9:{s:4:\"icon\";s:18:\"fab fa-google-plus\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:6:\"_blank\";s:13:\"link_nofollow\";s:2:\"no\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}}s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:5:\"right\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:6:\"7f7f7f\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5e306bed2107a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306bed2107a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306bed159ac\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":26:{s:4:\"html\";s:36:\"1-800-999-9999 — hi@loremipsum.com\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"html\";s:11:\"connections\";a:1:{s:4:\"html\";s:0:\"\";}}}}'),(251,80,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(252,81,'_fl_builder_enabled','1'),(253,81,'_fl_theme_layout_type','header'),(254,81,'_fl_builder_data','a:20:{s:13:\"5e306ce91437f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce91437f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-24\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e306ce91806e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce91806e\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e306ce91437f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e306ce91bd5e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce91bd5e\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306ce91806e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e306ce91fa4d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce91fa4d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306ce91bd5e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:75:\"<p style=\"text-align: center;\">The George Washington Scholars Endowment</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";}}s:13:\"5e306ce92373d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce92373d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e306ce91bd5e\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e306ce92742c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce92742c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306ce92373d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e306ce92b11c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce92b11c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306ce92742c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:39:\"<p style=\"text-align: center;\">1785</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-35\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";}}s:13:\"5e306ce92ee0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce92ee0b\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1888\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e306ce932afb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce932afb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e306ce92ee0b\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e306ce9367ea\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce9367ea\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306ce932afb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"43.56\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e306ce93a4da\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce93a4da\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306ce932afb\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"56.44\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e306ce93e1c9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce93e1c9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306ce9367ea\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:51:\"http://gwendowment.org/wordpress1/?attachment_id=35\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"da576648b5\";s:6:\"delete\";s:10:\"f013f3fc82\";s:4:\"edit\";s:10:\"2112ce7592\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e306ce941eb9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce941eb9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306ce93a4da\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:13:\"medium-mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"4b5887\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5e306ce945ba8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce945ba8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e306ce92ee0b\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e306ce949898\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce949898\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306ce945ba8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e306ce94d587\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce94d587\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306ce949898\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:3:\"-20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:3:\"-20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}s:13:\"5e306ce951277\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce951277\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"17\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e306ce954f66\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce954f66\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e306ce951277\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e306ce958c56\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce958c56\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306ce954f66\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e306ce95c945\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce95c945\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306ce958c56\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:3:\"-20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:3:\"-20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(255,81,'_fl_builder_draft','a:0:{}'),(256,81,'_edit_lock','1580499152:1'),(257,81,'_edit_last','1'),(258,81,'_fl_theme_builder_locations','a:1:{i:0;s:12:\"post:page:76\";}'),(259,81,'_fl_theme_builder_exclusions','a:0:{}'),(260,81,'_fl_theme_builder_user_rules','a:0:{}'),(261,81,'_fl_theme_builder_logic','a:0:{}'),(262,81,'_fl_theme_layout_settings','a:4:{s:6:\"sticky\";s:1:\"0\";s:6:\"shrink\";s:1:\"0\";s:7:\"overlay\";s:1:\"0\";s:10:\"overlay_bg\";s:11:\"transparent\";}'),(263,81,'_fl_theme_builder_preview_location','post:page:37'),(264,81,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(265,81,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(266,81,'_wp_old_date','2019-12-06'),(267,82,'_fl_builder_data','a:20:{s:13:\"5e306ce91437f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce91437f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-24\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e306ce91806e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce91806e\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e306ce91437f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e306ce91bd5e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce91bd5e\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306ce91806e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e306ce91fa4d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce91fa4d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306ce91bd5e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:75:\"<p style=\"text-align: center;\">The George Washington Scholars Endowment</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";}}s:13:\"5e306ce92373d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce92373d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e306ce91bd5e\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e306ce92742c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce92742c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306ce92373d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e306ce92b11c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce92b11c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306ce92742c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:39:\"<p style=\"text-align: center;\">1785</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-35\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";}}s:13:\"5e306ce92ee0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce92ee0b\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1888\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e306ce932afb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce932afb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e306ce92ee0b\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e306ce9367ea\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce9367ea\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306ce932afb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"43.56\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e306ce93a4da\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce93a4da\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306ce932afb\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"56.44\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e306ce93e1c9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce93e1c9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306ce9367ea\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:51:\"http://gwendowment.org/wordpress1/?attachment_id=35\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"da576648b5\";s:6:\"delete\";s:10:\"f013f3fc82\";s:4:\"edit\";s:10:\"2112ce7592\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e306ce941eb9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce941eb9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306ce93a4da\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:13:\"medium-mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"4b5887\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5e306ce945ba8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce945ba8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e306ce92ee0b\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e306ce949898\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce949898\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306ce945ba8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e306ce94d587\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce94d587\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306ce949898\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:3:\"-20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:3:\"-20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}s:13:\"5e306ce951277\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce951277\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"17\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e306ce954f66\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce954f66\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e306ce951277\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e306ce958c56\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce958c56\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e306ce954f66\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e306ce95c945\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e306ce95c945\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e306ce958c56\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:3:\"-20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:3:\"-20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(268,82,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(269,83,'_wp_attached_file','2020/01/tr.png'),(270,83,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:434;s:6:\"height\";i:325;s:4:\"file\";s:14:\"2020/01/tr.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"tr-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"tr-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(281,81,'_wp_trash_meta_status','publish'),(282,81,'_wp_trash_meta_time','1580495930'),(283,81,'_wp_desired_post_slug','front-page-copy'),(284,88,'_fl_builder_enabled','1'),(285,88,'_fl_theme_layout_type','header'),(286,88,'_fl_builder_data','a:9:{s:13:\"5e34749a506c6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506c6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e34749a506cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506c6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e34749a506cd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cd\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e34749a506cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:22:\"rgba(204,204,204,0.59)\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e34749a506cf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cf\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":51:{s:4:\"text\";s:92:\"<p style=\"text-align: center;\"><strong>The George Washington Scholars Endowment</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"70\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";}}s:13:\"5e3474e1eb260\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3474e1eb260\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:10:\"Here\'s how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e347561dbeb5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347561dbeb5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5e347561dc0fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347561dc0fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e347561dbeb5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e347568c2b28\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347568c2b28\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e347561dc0fe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:243:\"<p style=\"text-align: center; text-decoration: underline; text-decoration-color: grey;\"><span style=\"font-size: 25px;\"><span style=\"font-size: 30px; text-decoration: underline;\">Discover and develop genius buried in poverty</span> </span></p>\";s:5:\"color\";s:6:\"2b2b2b\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:8:\"Rosarivo\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";}}s:13:\"5e347791d4603\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347791d4603\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:56:\"<p style=\"text-align: center;\"><strong>1785</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-30\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";s:24:\"flrich1580496686096_text\";s:0:\"\";s:24:\"flrich1580496799990_text\";s:0:\"\";s:24:\"flrich1580496880753_text\";s:0:\"\";s:24:\"flrich1580496943645_text\";s:0:\"\";s:24:\"flrich1580498969041_text\";s:0:\"\";s:24:\"flrich1580499016567_text\";s:0:\"\";s:24:\"flrich1580499353572_text\";s:0:\"\";s:24:\"flrich1580499811828_text\";s:0:\"\";}}}'),(287,88,'_fl_builder_draft','a:9:{s:13:\"5e34749a506c6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506c6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e34749a506cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506c6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e34749a506cd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cd\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e34749a506cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:22:\"rgba(204,204,204,0.59)\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e34749a506cf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cf\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":51:{s:4:\"text\";s:92:\"<p style=\"text-align: center;\"><strong>The George Washington Scholars Endowment</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"70\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";}}s:13:\"5e3474e1eb260\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3474e1eb260\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:10:\"Here\'s how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e347561dbeb5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347561dbeb5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5e347561dc0fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347561dc0fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e347561dbeb5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e347568c2b28\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347568c2b28\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e347561dc0fe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:243:\"<p style=\"text-align: center; text-decoration: underline; text-decoration-color: grey;\"><span style=\"font-size: 25px;\"><span style=\"font-size: 30px; text-decoration: underline;\">Discover and develop genius buried in poverty</span> </span></p>\";s:5:\"color\";s:6:\"2b2b2b\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:8:\"Rosarivo\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";}}s:13:\"5e347791d4603\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347791d4603\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:56:\"<p style=\"text-align: center;\"><strong>1785</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-30\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";s:24:\"flrich1580496686096_text\";s:0:\"\";s:24:\"flrich1580496799990_text\";s:0:\"\";s:24:\"flrich1580496880753_text\";s:0:\"\";s:24:\"flrich1580496943645_text\";s:0:\"\";s:24:\"flrich1580498969041_text\";s:0:\"\";s:24:\"flrich1580499016567_text\";s:0:\"\";s:24:\"flrich1580499353572_text\";s:0:\"\";s:24:\"flrich1580499811828_text\";s:0:\"\";}}}'),(288,88,'_edit_lock','1581699362:1'),(289,88,'_edit_last','1'),(290,88,'_fl_theme_builder_locations','a:0:{}'),(291,88,'_fl_theme_builder_exclusions','a:0:{}'),(292,88,'_fl_theme_builder_user_rules','a:0:{}'),(293,88,'_fl_theme_builder_logic','a:0:{}'),(294,88,'_fl_theme_layout_settings','a:4:{s:6:\"sticky\";s:1:\"0\";s:6:\"shrink\";s:1:\"0\";s:7:\"overlay\";s:1:\"0\";s:10:\"overlay_bg\";s:11:\"transparent\";}'),(295,88,'_fl_theme_builder_preview_location','post:page:37'),(296,88,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(297,88,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(298,88,'_wp_old_date','2019-12-06'); INSERT INTO `wp_postmeta` VALUES (299,89,'_fl_builder_data','a:20:{s:13:\"5e34749a506c6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506c6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-24\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e34749a506cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506c6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e34749a506cd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cd\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e34749a506cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e34749a506cf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cf\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:75:\"<p style=\"text-align: center;\">The George Washington Scholars Endowment</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";}}s:13:\"5e34749a506d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506d0\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e34749a506d2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506d2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e34749a506d0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e34749a506d4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506d4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506d2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:39:\"<p style=\"text-align: center;\">1785</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-35\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";}}s:13:\"5e34749a506d5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506d5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1888\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e34749a506d7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506d7\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506d5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e34749a506d8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506d8\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e34749a506d7\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"43.56\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e34749a506da\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506da\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e34749a506d7\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"56.44\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e34749a506db\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506db\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506d8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:51:\"http://gwendowment.org/wordpress1/?attachment_id=35\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"da576648b5\";s:6:\"delete\";s:10:\"f013f3fc82\";s:4:\"edit\";s:10:\"2112ce7592\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e34749a506dd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506dd\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506da\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:13:\"medium-mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"4b5887\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5e34749a506df\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506df\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506d5\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e34749a506e0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506e0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e34749a506df\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e34749a506e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506e2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506e0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:3:\"-20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:3:\"-20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}s:13:\"5e34749a506e3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506e3\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"17\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e34749a506e5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506e5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506e3\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e34749a506e7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506e7\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e34749a506e5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e34749a506e9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506e9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506e7\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:3:\"-20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:3:\"-20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(300,89,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(307,93,'_wp_attached_file','2020/01/new-homepage-painting.jpg'),(308,93,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:788;s:6:\"height\";i:478;s:4:\"file\";s:33:\"2020/01/new-homepage-painting.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"new-homepage-painting-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:33:\"new-homepage-painting-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"new-homepage-painting-768x466.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:466;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:{}}}'),(309,94,'_wp_attached_file','2020/01/homepage-painting-another-option.jpg'),(310,94,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:788;s:6:\"height\";i:720;s:4:\"file\";s:44:\"2020/01/homepage-painting-another-option.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"homepage-painting-another-option-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:44:\"homepage-painting-another-option-300x274.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"homepage-painting-another-option-768x702.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:702;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:{}}}'),(311,95,'_fl_builder_data','a:11:{s:13:\"5e34749a506c6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506c6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:7:\"contain\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e34749a506cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506c6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e34749a506cd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cd\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e34749a506cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"20\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e34749a506cf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cf\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:75:\"<p style=\"text-align: center;\">The George Washington Scholars Endowment</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"170\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";}}s:13:\"5e34749a506d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506d0\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5e34749a506d2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506d2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e34749a506d0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-30\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3474e1eb260\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3474e1eb260\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e347561dc0fe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:10:\"Here\'s how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e347561dbeb5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347561dbeb5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:3;s:8:\"settings\";s:0:\"\";}s:13:\"5e347561dc0fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347561dc0fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e347561dbeb5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e347568c2b28\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347568c2b28\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506d2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:4:\"text\";s:126:\"<p style=\"text-align: center; \"><span style=\"font-size: 20px;\">Help discover and develop genius buried in poverty </span></p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:6:\"Sumana\";s:11:\"font_weight\";s:3:\"700\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";}}s:13:\"5e347791d4603\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347791d4603\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":45:{s:4:\"text\";s:39:\"<p style=\"text-align: center;\">1785</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-30\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";s:24:\"flrich1580496686096_text\";s:0:\"\";s:24:\"flrich1580496799990_text\";s:0:\"\";s:24:\"flrich1580496880753_text\";s:0:\"\";s:24:\"flrich1580496943645_text\";s:0:\"\";s:24:\"flrich1580498969041_text\";s:0:\"\";s:24:\"flrich1580499016567_text\";s:0:\"\";}}}'),(312,95,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(313,96,'_fl_builder_data','a:11:{s:13:\"5e34749a506c6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506c6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e34749a506cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506c6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e34749a506cd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cd\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e34749a506cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:22:\"rgba(204,204,204,0.59)\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"50\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e34749a506cf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cf\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":51:{s:4:\"text\";s:92:\"<p style=\"text-align: center;\"><strong>The George Washington Scholars Endowment</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"70\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";}}s:13:\"5e34749a506d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506d0\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5e34749a506d2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506d2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e34749a506d0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3474e1eb260\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3474e1eb260\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e347561dc0fe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:10:\"Here\'s how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e347561dbeb5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347561dbeb5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:3;s:8:\"settings\";s:0:\"\";}s:13:\"5e347561dc0fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347561dc0fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e347561dbeb5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e347568c2b28\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347568c2b28\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506d2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":38:{s:4:\"text\";s:178:\"<p style=\"text-align: center; text-decoration: underline; text-decoration-color: #\"><span style=\"font-size: 25px;\">Help discover and develop genius buried in poverty </span></p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:6:\"Sumana\";s:11:\"font_weight\";s:3:\"700\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";}}s:13:\"5e347791d4603\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347791d4603\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:56:\"<p style=\"text-align: center;\"><strong>1785</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-30\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";s:24:\"flrich1580496686096_text\";s:0:\"\";s:24:\"flrich1580496799990_text\";s:0:\"\";s:24:\"flrich1580496880753_text\";s:0:\"\";s:24:\"flrich1580496943645_text\";s:0:\"\";s:24:\"flrich1580498969041_text\";s:0:\"\";s:24:\"flrich1580499016567_text\";s:0:\"\";s:24:\"flrich1580499353572_text\";s:0:\"\";s:24:\"flrich1580499811828_text\";s:0:\"\";}}}'),(314,96,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(315,97,'_fl_builder_data','a:11:{s:13:\"5e34749a506c6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506c6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e34749a506cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506c6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e34749a506cd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cd\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e34749a506cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:22:\"rgba(204,204,204,0.59)\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e34749a506cf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cf\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":51:{s:4:\"text\";s:92:\"<p style=\"text-align: center;\"><strong>The George Washington Scholars Endowment</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"70\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";}}s:13:\"5e34749a506d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506d0\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5e34749a506d2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506d2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e34749a506d0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3474e1eb260\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3474e1eb260\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e347561dc0fe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:10:\"Here\'s how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e347561dbeb5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347561dbeb5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:3;s:8:\"settings\";s:0:\"\";}s:13:\"5e347561dc0fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347561dc0fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e347561dbeb5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e347568c2b28\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347568c2b28\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506d2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:243:\"<p style=\"text-align: center; text-decoration: underline; text-decoration-color: grey;\"><span style=\"font-size: 25px;\"><span style=\"font-size: 30px; text-decoration: underline;\">Discover and develop genius buried in poverty</span> </span></p>\";s:5:\"color\";s:6:\"2b2b2b\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:8:\"Rosarivo\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";}}s:13:\"5e347791d4603\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347791d4603\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:56:\"<p style=\"text-align: center;\"><strong>1785</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-30\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";s:24:\"flrich1580496686096_text\";s:0:\"\";s:24:\"flrich1580496799990_text\";s:0:\"\";s:24:\"flrich1580496880753_text\";s:0:\"\";s:24:\"flrich1580496943645_text\";s:0:\"\";s:24:\"flrich1580498969041_text\";s:0:\"\";s:24:\"flrich1580499016567_text\";s:0:\"\";s:24:\"flrich1580499353572_text\";s:0:\"\";s:24:\"flrich1580499811828_text\";s:0:\"\";}}}'),(316,97,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(317,98,'_fl_builder_data','a:9:{s:13:\"5e34749a506c6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506c6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e34749a506cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506c6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e34749a506cd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cd\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e34749a506cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:22:\"rgba(204,204,204,0.59)\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e34749a506cf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cf\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":51:{s:4:\"text\";s:92:\"<p style=\"text-align: center;\"><strong>The George Washington Scholars Endowment</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"70\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";}}s:13:\"5e3474e1eb260\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3474e1eb260\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:10:\"Here\'s how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e347561dbeb5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347561dbeb5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5e347561dc0fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347561dc0fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e347561dbeb5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e347568c2b28\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347568c2b28\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e347561dc0fe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:243:\"<p style=\"text-align: center; text-decoration: underline; text-decoration-color: grey;\"><span style=\"font-size: 25px;\"><span style=\"font-size: 30px; text-decoration: underline;\">Discover and develop genius buried in poverty</span> </span></p>\";s:5:\"color\";s:6:\"2b2b2b\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:8:\"Rosarivo\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";}}s:13:\"5e347791d4603\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347791d4603\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:56:\"<p style=\"text-align: center;\"><strong>1785</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-30\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";s:24:\"flrich1580496686096_text\";s:0:\"\";s:24:\"flrich1580496799990_text\";s:0:\"\";s:24:\"flrich1580496880753_text\";s:0:\"\";s:24:\"flrich1580496943645_text\";s:0:\"\";s:24:\"flrich1580498969041_text\";s:0:\"\";s:24:\"flrich1580499016567_text\";s:0:\"\";s:24:\"flrich1580499353572_text\";s:0:\"\";s:24:\"flrich1580499811828_text\";s:0:\"\";}}}'),(318,98,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(319,99,'_fl_builder_data','a:28:{s:13:\"5defa442b79ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442b79ad\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-56\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa442e54dc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e54dc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa442b79ad\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa442e91cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e91cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"73.03\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa4487c019\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa4487c019\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"26.97\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa46682ac2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa46682ac2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa442e91cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:4:\"text\";s:1080:\"Replenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”\n\nBecause the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:\n<ul>\n <li>Unusual Assets (such as a vehicle, work of art, or real estate),</li>\n <li>Wills or Trust Bequests,</li>\n <li>Charitable Gift Annuities,</li>\n <li>IRA Rollover Gifts,</li>\n <li>Appreciated Securities,</li>\n <li>The Gift of Life Insurance, and</li>\n <li>A Charitable Remainder Trust.</li>\n</ul>\nContributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986280828_text\";s:0:\"\";s:24:\"flrich1580160915873_text\";s:0:\"\";s:24:\"flrich1580160994089_text\";s:0:\"\";s:24:\"flrich1580161344480_text\";s:0:\"\";}}s:13:\"5defa49e863ae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa49e863ae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa4487c019\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"14\";s:9:\"photo_src\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-25\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:14;s:5:\"title\";s:33:\"Browne_Henriette_-_A_Girl_Writing\";s:8:\"filename\";s:37:\"Browne_Henriette_-_A_Girl_Writing.jpg\";s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:4:\"link\";s:68:\"http://gwendowment.org/wordpress1/browne_henriette_-_a_girl_writing/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:33:\"browne_henriette_-_a_girl_writing\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316922000;s:8:\"modified\";d:1575316922000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"96bea54890\";s:6:\"delete\";s:10:\"d5ce4da35f\";s:4:\"edit\";s:10:\"02f85b8b37\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=14&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1164538;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:235;s:5:\"width\";i:300;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-300x235.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:803;s:5:\"width\";i:1024;s:3:\"url\";s:107:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-1024x803.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa61638f40\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa61638f40\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa647847cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:4:\"text\";s:426:\"<table>\n<tbody>\n<tr>\n<td align=\"center\"><form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\" /> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form></td>\n</tr>\n</tbody>\n</table>\n \";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986713891_text\";s:0:\"\";s:24:\"flrich1575986794868_text\";s:0:\"\";s:24:\"flrich1575986998857_text\";s:0:\"\";}}s:13:\"5defa6476da2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6476da2f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"280\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa64780adc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa64780adc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6476da2f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa647847cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa647847cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa64780adc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa68337135\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68337135\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:4;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"670\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6834ded1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6834ded1\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa68337135\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa68351bc0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68351bc0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6834ded1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-50\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa692aebae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa692aebae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa68351bc0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:4:\"text\";s:290:\"<p style=\"text-align: center;\"><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i>\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986837297_text\";s:0:\"\";s:24:\"flrich1575986864207_text\";s:0:\"\";s:24:\"flrich1575987018674_text\";s:0:\"\";s:24:\"flrich1580161859153_text\";s:0:\"\";}}s:13:\"5defa6c87a58b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c87a58b\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:5;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:3:\"890\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6c88d635\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c88d635\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6c87a58b\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa6c891324\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c891324\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:36.850000000000001;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa6c895012\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c895012\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"63.15\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"60\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa6db0420a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6db0420a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c891324\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"15\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:15;s:5:\"title\";s:9:\"Eli_Broad\";s:8:\"filename\";s:13:\"Eli_Broad.jpg\";s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:4:\"link\";s:44:\"http://gwendowment.org/wordpress1/eli_broad/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:9:\"eli_broad\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316931000;s:8:\"modified\";d:1575316931000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"97e2e11f96\";s:6:\"delete\";s:10:\"bb92a16204\";s:4:\"edit\";s:10:\"3db9e3add6\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=15&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:9338;s:21:\"filesizeHumanReadable\";s:4:\"9 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:202;s:5:\"width\";i:300;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa704c89ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa704c89ba\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c895012\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:4:\"text\";s:216:\"<strong>“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.”</strong>\n\n<strong>- Eli Broad</strong>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986951424_text\";s:0:\"\";s:24:\"flrich1575987255360_text\";s:0:\"\";s:24:\"flrich1580161890254_text\";s:0:\"\";s:24:\"flrich1580161913017_text\";s:0:\"\";}}s:13:\"5e2f5808dc420\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5808dc420\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"718\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f580a09fdd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a09fdd\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5808dc420\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f580a0dccc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a0dccc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f580a09fdd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f58221b035\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f58221b035\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f580a0dccc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:111:\"<p style=\"text-align: left;\"><span style=\"font-size: 20px;\"><strong>Investment & Impact</strong></span></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:2:\"20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580161062185_text\";s:0:\"\";s:24:\"flrich1580161098815_text\";s:0:\"\";s:24:\"flrich1580161168623_text\";s:0:\"\";s:24:\"flrich1580161293055_text\";s:0:\"\";s:24:\"flrich1580161327619_text\";s:0:\"\";s:24:\"flrich1580161425665_text\";s:0:\"\";s:24:\"flrich1580161503018_text\";s:0:\"\";}}s:13:\"5e2f58a473b8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f58a473b8b\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:3:\"550\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f58a495ff5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f58a495ff5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f58a473b8b\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f58a499ce4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f58a499ce4\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f58a495ff5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f58a46fe9c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f58a46fe9c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f58a499ce4\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(320,99,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(321,56,'_fl_builder_data','a:11:{s:13:\"5e330b418d386\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b418d386\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1114\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b4191075\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4191075\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e330b418d386\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e330b4194d65\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4194d65\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e330b4191075\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b666b520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b666b520\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e330b4194d65\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":56:{s:4:\"text\";s:1912:\"<h2>Education – The Birthright of Every Child</h2>\n\n<hr />\n\n<img class=\"size-full wp-image-83 alignright\" src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" />\n\n<span style=\"color: #808080; font-size: 18px;\">Every boy and girl born under heaven, of whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">The very best schools understand that enabling this wonderful process—this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.” </span>\n\n<span style=\"font-size: 18px; color: #808080;\">Faithfully,\nT. Robinson Ahlstrom - Chairman</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580403560441_text\";s:0:\"\";s:24:\"flrich1580403643677_text\";s:0:\"\";s:24:\"flrich1580403672359_text\";s:0:\"\";s:24:\"flrich1580404810052_text\";s:0:\"\";s:24:\"flrich1580405135309_text\";s:0:\"\";s:24:\"flrich1580405328584_text\";s:0:\"\";s:24:\"flrich1580406445376_text\";s:0:\"\";s:24:\"flrich1580406501486_text\";s:0:\"\";s:24:\"flrich1580406777884_text\";s:0:\"\";s:24:\"flrich1581026176694_text\";s:0:\"\";s:24:\"flrich1581026343922_text\";s:0:\"\";s:24:\"flrich1581026426115_text\";s:0:\"\";s:24:\"flrich1581026583916_text\";s:0:\"\";s:24:\"flrich1581026792428_text\";s:0:\"\";s:24:\"flrich1581027065631_text\";s:0:\"\";s:24:\"flrich1581027126736_text\";s:0:\"\";s:24:\"flrich1581027239411_text\";s:0:\"\";s:24:\"flrich1581028280748_text\";s:0:\"\";s:24:\"flrich1581029071269_text\";s:0:\"\";s:24:\"flrich1581030577877_text\";s:0:\"\";s:24:\"flrich1581030622674_text\";s:0:\"\";s:24:\"flrich1581030759972_text\";s:0:\"\";s:24:\"flrich1581113566985_text\";s:0:\"\";s:24:\"flrich1581115571537_text\";s:0:\"\";}}s:13:\"5e3c90b5d1e4c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d1e4c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"F5F2FD\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:1:\"2\";s:9:\"top_right\";s:1:\"2\";s:11:\"bottom_left\";s:1:\"2\";s:12:\"bottom_right\";s:1:\"2\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c90b5d98d8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d98d8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d1e4c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c90b5d9c57\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d9c57\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c90b5d98d8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c919a5c069\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c919a5c069\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:4:\"text\";s:152:\"<h4>\"Give children in need a chance at the very best education through GW Scholars Fund and help them become the people that God meant them to be.\"</h4>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1581027740534_text\";s:0:\"\";}}s:13:\"5e3c93e26e819\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26e819\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c93e26eb00\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26eb00\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c93e26e819\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c941c545de\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c941c545de\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c93e26eb00\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":104:{s:5:\"title\";s:10:\"Donate Now\";s:9:\"title_tag\";s:2:\"h3\";s:4:\"text\";s:132:\"<span style=\"font-size: 16px; color: #ffffff;\">Because a great education, full of wonder and awe, is the birthright of all. </span>\";s:6:\"layout\";s:6:\"inline\";s:8:\"bg_color\";s:6:\"4b5887\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:9:\"alignment\";s:6:\"center\";s:11:\"title_color\";s:0:\"\";s:16:\"title_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:23:\"title_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:27:\"title_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:22:\"text_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:26:\"text_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"btn_text\";s:6:\"Donate\";s:8:\"btn_link\";s:52:\"http://gwendowment.org/wordpress1/investment-impact/\";s:15:\"btn_link_target\";s:5:\"_self\";s:17:\"btn_link_nofollow\";s:2:\"no\";s:8:\"btn_icon\";s:20:\"fas fa-user-graduate\";s:14:\"btn_duo_color1\";s:0:\"\";s:14:\"btn_duo_color2\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:21:\"btn_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"btn_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"btn_button_transition\";s:7:\"disable\";s:17:\"btn_border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:21:\"btn_border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:6:\"donate\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:16:\"wrap_padding_top\";s:2:\"19\";s:17:\"wrap_padding_unit\";s:2:\"px\";s:23:\"wrap_padding_top_medium\";s:0:\"\";s:24:\"wrap_padding_medium_unit\";s:2:\"px\";s:27:\"wrap_padding_top_responsive\";s:0:\"\";s:28:\"wrap_padding_responsive_unit\";s:2:\"px\";s:18:\"wrap_padding_right\";s:2:\"19\";s:25:\"wrap_padding_right_medium\";s:0:\"\";s:29:\"wrap_padding_right_responsive\";s:0:\"\";s:19:\"wrap_padding_bottom\";s:2:\"19\";s:26:\"wrap_padding_bottom_medium\";s:0:\"\";s:30:\"wrap_padding_bottom_responsive\";s:0:\"\";s:17:\"wrap_padding_left\";s:2:\"19\";s:24:\"wrap_padding_left_medium\";s:0:\"\";s:28:\"wrap_padding_left_responsive\";s:0:\"\";s:22:\"btn_padding_top_medium\";s:0:\"\";s:26:\"btn_padding_top_responsive\";s:0:\"\";s:24:\"btn_padding_right_medium\";s:0:\"\";s:28:\"btn_padding_right_responsive\";s:0:\"\";s:25:\"btn_padding_bottom_medium\";s:0:\"\";s:29:\"btn_padding_bottom_responsive\";s:0:\"\";s:23:\"btn_padding_left_medium\";s:0:\"\";s:27:\"btn_padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:3:\"cta\";s:11:\"connections\";a:12:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"title_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:8:\"btn_text\";s:0:\"\";s:8:\"btn_link\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:22:\"btn_border_hover_color\";s:0:\"\";}s:15:\"btn_link-search\";s:0:\"\";s:24:\"flrich1581028382968_text\";s:0:\"\";s:25:\"as_values_btn_link-search\";s:0:\"\";s:24:\"flrich1581028740781_text\";s:0:\"\";s:24:\"flrich1581028867231_text\";s:0:\"\";s:24:\"flrich1581029256280_text\";s:0:\"\";s:24:\"flrich1581029501115_text\";s:0:\"\";s:24:\"flrich1581029719309_text\";s:0:\"\";s:24:\"flrich1581029992142_text\";s:0:\"\";s:24:\"flrich1581095090626_text\";s:0:\"\";s:24:\"flrich1581112719187_text\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_padding_top\";s:0:\"\";s:18:\"btn_padding_bottom\";s:0:\"\";s:16:\"btn_padding_left\";s:0:\"\";s:17:\"btn_padding_right\";s:0:\"\";s:14:\"btn_typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:10:\"btn_border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:22:\"btn_border_hover_color\";s:0:\"\";}}}'),(322,56,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:28:\".donate h3 {color: white;}\r\n\";s:2:\"js\";s:0:\"\";}'),(323,56,'_fl_builder_enabled','1'),(324,100,'_fl_builder_data','a:4:{s:13:\"5e330b418d386\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b418d386\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":125:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b4191075\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4191075\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e330b418d386\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e330b4194d65\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4194d65\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e330b4191075\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b666b520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b666b520\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e330b4194d65\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:3739:\"<h2>Education – The Birthright of Every Child</h2>\n<span style=\"font-size: 16px;\"><img class=\"size-full wp-image-83 alignright\" src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" />Every boy and girl in every place born into whatever circumstance deserves a chance to explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived. Enabling this process of human flourishing is what education is all about. In fact, the Latin root for the word “educate” is <i>ducere,</i> means to “draw out.” The best schools do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation. </span>\n\n<span style=\"font-size: 16px;\">From colonial times until the mid-twentieth century, America’s decentralized scheme of local citizen-led academies accomplished this to such a degree that a unique national character was formed. Combining literature-based learning with scientific inquiry in an environment effused with moral seriousness, these schools—many instructing several grades in one room—helped to make the United States the most inclusive, inv</span>entive and prosperous nation in all human history.</span>\n\n<span style=\"font-size: 16px;\">This didn’t just happen. It was the grand design and personal priority of our nation’s founders, several of whom also founded schools. Ben Franklin, a product of Boston Latin, carried the classical model to create a free school in Philadelphia—a school which became the University of Pennsylvania. Thomas Jefferson created an entire system of classical schools for Virginia and then founded The University of Virginia. On the 17<span style=\"font-weight: 400;\">th</span><span style=\"font-weight: 400;\"> of December 1785, George Washington created an Endowment and established a free Latin school in his hometown of Alexandria, Virginia. Long before “diversity” became fashionable, Washington’s school was educating women, African Americans and the very poor—becoming known as “the birthplace of universal education in the United States.” </span>\n\n<span style=\"font-size: 16px;\">Until the end of his life, including the eight years of his Presidency, George Washington remained personally engaged in the Endowment’s work, annually granting scholarships and making personal inquiries regarding the welfare of the boys and girls he supported. Upon his death, the Endowment’s significant funds were transferred to other managers who unwisely spent the principle, forcing Washington’s great charitable work to cease.</span>\n\n<span style=\"font-size: 16px;\">After a hiatus of almost two centuries, a small group of citizens have come together to re-establish and replenish Washington’s Endowment so that it can resume its historic work—serving youth from every circumstance and every culture whose personal promise is not matched by their family’s ability to secure the inestimable gift of a classical education. </span>\n\n<span style=\"font-size: 16px;\">Today, that work includes designing, building, maintaining and supporting independent classical schools here in the United States and providing financial assistance to some of the small private academies by which the world’s poorest people are education their own children.</span>\n\n<span style=\"font-size: 16px;\">We are just getting started. We welcome your support and active engagement. In the words of Robert Frost, we have “miles to go and promises to keep.”</span>\n\n<span style=\"font-size: 16px;\">Faithfully,</span>\n\n<span style=\"font-size: 16px;\">T. Robinson Ahlstrom - Chairman</span>\n \";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580403560441_text\";s:0:\"\";s:24:\"flrich1580403643677_text\";s:0:\"\";s:24:\"flrich1580403672359_text\";s:0:\"\";s:24:\"flrich1580404810052_text\";s:0:\"\";s:24:\"flrich1580405135309_text\";s:0:\"\";s:24:\"flrich1580405328584_text\";s:0:\"\";s:24:\"flrich1580406445376_text\";s:0:\"\";s:24:\"flrich1580406501486_text\";s:0:\"\";s:24:\"flrich1580406777884_text\";s:0:\"\";}}}'),(325,100,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(326,44,'_fl_builder_data','a:12:{s:13:\"5e2f4faf046bf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf046bf\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f4faf0c09e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf0c09e\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f4faf046bf\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f4faf0fd8d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf0fd8d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f4faf0c09e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"31.33\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f4faf13a7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf13a7c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f4faf0c09e\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"68.67\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f514e42475\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f514e42475\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f4faf0fd8d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"24\";s:9:\"photo_src\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"85\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:24;s:5:\"title\";s:14:\"Rockwell-Large\";s:8:\"filename\";s:18:\"Rockwell-Large.jpg\";s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:4:\"link\";s:49:\"http://gwendowment.org/wordpress1/rockwell-large/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:14:\"rockwell-large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316978000;s:8:\"modified\";d:1575316978000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"482f126b6f\";s:6:\"delete\";s:10:\"36eaf4a3e8\";s:4:\"edit\";s:10:\"7ecb2a2d3c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=24&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1502959;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1481;s:5:\"width\";i:2400;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:185;s:5:\"width\";i:300;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-300x185.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:632;s:5:\"width\";i:1024;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-1024x632.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:6:\"height\";i:1481;s:5:\"width\";i:2400;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f51fa41c2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f51fa41c2f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f4faf13a7c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":38:{s:4:\"text\";s:2636:\"<h2 style=\"text-align: center;\">Quality and Equality</h2>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">Across the United States, too many K-12 schools are failing too many students. Two out of three eighth-graders can’t read proficiently. Two out of three score below proficient in math. Seventy-five percent of students are not proficient in civics. Nearly three out of four 12th-grade students cannot write proficiently. More than one million American students drop out of school every year and only one in four who do graduate from high school are ready for college in the four core subjects of English, reading, math and science.\n</span>\n<span style=\"font-size: 16px; color: #808080;\">American students now rank 25th in math, 17th in science and 14th in reading compared to students in 27 industrialized countries. Still more troubling is that fact that a longitudinal study of PISA results indicates that America’s high school students are continuing to fall further and further behind.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">And, in America’s K-12 schools, quality is not the only issue. Equality has proven to be an equally elusive goal. According to a 2009 Civil Rights Project report published by the Regents of the University of California, “Fifty-five years after the Brown decision, blacks and Latinos in American schools are more segregated than they have been in four decades.” The results are devastating. For African-American and Hispanic students across the country, dropout rates are close to 40 percent, compared to the national average of 27 percent. Only 4 percent of African American students and 11 percent of Hispanic students who do finish high school are ready for college in their core subjects.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">In fact, access to quality education is a global challenge. It is the next great civil right. In the area of education, many of the 2015 Millennial Development Goals set by the United Nations were not met—especially in Sub-Saharan Africa. According to a UNESCO report published at the September 8th (2014) Conference on Literacy and Sustainable Development, “Poor quality education is leaving a legacy of illiteracy more widespread than previously believed: one in four young people—175 million adolescents—is unable to read a single sentence.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">The Endowment exists solely to “provide direct aid to worthy scholars.” Whether here in the United States or abroad, its mission is to redeem what Thomas Jefferson called, “genius buried in poverty.”</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580159486313_text\";s:0:\"\";s:24:\"flrich1580159514030_text\";s:0:\"\";s:24:\"flrich1580159541781_text\";s:0:\"\";s:24:\"flrich1581096501123_text\";s:0:\"\";s:24:\"flrich1581096594369_text\";s:0:\"\";s:24:\"flrich1581096865553_text\";s:0:\"\";}}s:13:\"5e2f5351d9773\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351d9773\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"698\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f5351ec820\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351ec820\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5351d9773\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f5351f050f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351f050f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f5351ec820\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"47.45\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"56\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e2f5351f41fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351f41fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f5351ec820\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:52.549999999999997;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f536e002a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f536e002a6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f5351f41fe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"22\";s:9:\"photo_src\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:22;s:5:\"title\";s:15:\"Robert_Hutchins\";s:8:\"filename\";s:19:\"Robert_Hutchins.jpg\";s:3:\"url\";s:80:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins.jpg\";s:4:\"link\";s:50:\"http://gwendowment.org/wordpress1/robert_hutchins/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"robert_hutchins\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316950000;s:8:\"modified\";d:1575316950000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b854b98f40\";s:6:\"delete\";s:10:\"d31aa3792a\";s:4:\"edit\";s:10:\"3ca4787f1f\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=22&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:19878;s:21:\"filesizeHumanReadable\";s:5:\"19 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:412;s:5:\"width\";i:518;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:239;s:5:\"width\";i:300;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:80:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins.jpg\";s:6:\"height\";i:412;s:5:\"width\";i:518;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f53d2d35d8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f53d2d35d8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f5351f050f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:273:\" \n<table>\n<tbody>\n<tr>\n<td valign=\"right\"><span style=\"font-size: 16px;\">“The Education that is best for the best is the education that is best for all.” </span>\n\n<span style=\"font-size: 16px;\">— Robert Maynard Hutchins</span></td>\n</tr>\n</tbody>\n</table>\n \";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580159958920_text\";s:0:\"\";s:24:\"flrich1580160044732_text\";s:0:\"\";s:24:\"flrich1581096971992_text\";s:0:\"\";s:24:\"flrich1581096998497_text\";s:0:\"\";s:24:\"flrich1581097348706_text\";s:0:\"\";s:24:\"flrich1581097434321_text\";s:0:\"\";s:24:\"flrich1581097493577_text\";s:0:\"\";}}}'),(327,44,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(328,44,'_fl_builder_enabled','1'),(329,101,'_fl_builder_data','a:17:{s:13:\"5e2f4f67e75f4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4f67e75f4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f511b06c80\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:110:\"<p style=\"text-align: center;\"><span style=\"font-size: 20px;\"><strong>Quality and Equality</strong></span></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580158827865_text\";s:0:\"\";s:24:\"flrich1580158841537_text\";s:0:\"\";s:24:\"flrich1580158853877_text\";s:0:\"\";s:24:\"flrich1580158871631_text\";s:0:\"\";s:24:\"flrich1580159663646_text\";s:0:\"\";s:24:\"flrich1580159747810_text\";s:0:\"\";s:24:\"flrich1580160118241_text\";s:0:\"\";s:24:\"flrich1580160137872_text\";s:0:\"\";s:24:\"flrich1580161406075_text\";s:0:\"\";}}s:13:\"5e2f4faf046bf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf046bf\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f4faf0c09e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf0c09e\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f4faf046bf\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f4faf0fd8d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf0fd8d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f4faf0c09e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"31.33\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f4faf13a7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf13a7c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f4faf0c09e\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"68.67\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f5119e8481\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5119e8481\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"700\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:3:\"400\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f511af34e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f511af34e2\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5119e8481\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f511b06c80\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f511b06c80\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f511af34e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f514e42475\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f514e42475\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f4faf0fd8d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"24\";s:9:\"photo_src\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"36\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:24;s:5:\"title\";s:14:\"Rockwell-Large\";s:8:\"filename\";s:18:\"Rockwell-Large.jpg\";s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:4:\"link\";s:49:\"http://gwendowment.org/wordpress1/rockwell-large/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:14:\"rockwell-large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316978000;s:8:\"modified\";d:1575316978000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b3d8e76987\";s:6:\"delete\";s:10:\"7da4becb98\";s:4:\"edit\";s:10:\"c0133c1baf\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=24&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1502959;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1481;s:5:\"width\";i:2400;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:185;s:5:\"width\";i:300;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-300x185.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:632;s:5:\"width\";i:1024;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-1024x632.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:6:\"height\";i:1481;s:5:\"width\";i:2400;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f51fa41c2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f51fa41c2f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f4faf13a7c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:4:\"text\";s:2299:\"Across the United States, too many K-12 schools are failing too many students. Two out of three eighth-graders can’t read proficiently. Two out of three score below proficient in math. Seventy-five percent of students are not proficient in civics. Nearly three out of four 12th-grade students cannot write proficiently. More than one million American students drop out of school every year and only one in four who do graduate from high school are ready for college in the four core subjects of English, reading, math and science.\n\nAmerican students now rank 25th in math, 17th in science and 14th in reading compared to students in 27 industrialized countries. Still more troubling is that fact that a longitudinal study of PISA results indicates that America’s high school students are continuing to fall further and further behind.\n\nAnd, in America’s K-12 schools, quality is not the only issue. Equality has proven to be an equally elusive goal. According to a 2009 Civil Rights Project report published by the Regents of the University of California, “Fifty-five years after the Brown decision, blacks and Latinos in American schools are more segregated than they have been in four decades.” The results are devastating. For African-American and Hispanic students across the country, dropout rates are close to 40 percent, compared to the national average of 27 percent. Only 4 percent of African American students and 11 percent of Hispanic students who do finish high school are ready for college in their core subjects.\n\nIn fact, access to quality education is a global challenge. It is the next great civil right. In the area of education, many of the 2015 Millennial Development Goals set by the United Nations were not met—especially in Sub-Saharan Africa. According to a UNESCO report published at the September 8th (2014) Conference on Literacy and Sustainable Development, “Poor quality education is leaving a legacy of illiteracy more widespread than previously believed: one in four young people—175 million adolescents—is unable to read a single sentence.\n\nThe Endowment exists solely to “provide direct aid to worthy scholars.” Whether here in the United States or abroad, its mission is to redeem what Thomas Jefferson called, “genius buried in poverty.”\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580159486313_text\";s:0:\"\";s:24:\"flrich1580159514030_text\";s:0:\"\";s:24:\"flrich1580159541781_text\";s:0:\"\";}}s:13:\"5e2f5351d9773\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351d9773\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":125:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"698\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f5351ec820\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351ec820\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5351d9773\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f5351f050f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351f050f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f5351ec820\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"47.45\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"89\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e2f5351f41fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351f41fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f5351ec820\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:52.549999999999997;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f536e002a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f536e002a6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f5351f41fe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"22\";s:9:\"photo_src\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:22;s:5:\"title\";s:15:\"Robert_Hutchins\";s:8:\"filename\";s:19:\"Robert_Hutchins.jpg\";s:3:\"url\";s:80:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins.jpg\";s:4:\"link\";s:50:\"http://gwendowment.org/wordpress1/robert_hutchins/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"robert_hutchins\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316950000;s:8:\"modified\";d:1575316950000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b854b98f40\";s:6:\"delete\";s:10:\"d31aa3792a\";s:4:\"edit\";s:10:\"3ca4787f1f\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=22&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:19878;s:21:\"filesizeHumanReadable\";s:5:\"19 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:412;s:5:\"width\";i:518;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:239;s:5:\"width\";i:300;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:80:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins.jpg\";s:6:\"height\";i:412;s:5:\"width\";i:518;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f53d2d35d8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f53d2d35d8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f5351f050f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":32:{s:4:\"text\";s:217:\"<table>\n<tbody>\n<tr>\n<td valign=\"right\"><strong>“The Education that is best for the best is the education that is best for all.” </strong>\n\n<strong>— Robert Maynard Hutchins</strong></td>\n</tr>\n</tbody>\n</table>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580159958920_text\";s:0:\"\";s:24:\"flrich1580160044732_text\";s:0:\"\";}}s:13:\"5e2f54ac612a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f54ac612a6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f511b06c80\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(330,101,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(331,39,'_fl_builder_data','a:12:{s:13:\"5e2f1657a010e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1657a010e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f1ab15d915\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":44:{s:4:\"text\";s:1544:\" \n<h2 style=\"color: #4b5887;\"><strong>Leadership & Teamwork</strong></span></h2>\n<h4 style=\"color: #4b5887;\"> <b>Board of Governors and Visitors</b></h4>\n\n<hr />\n\nT. Robinson Ahlstrom, Bloomfield Hills, MI\n<i>Chairman & CEO, GW Scholars Endowment\nChair, Executive Committee</i>\n\nJames Caraher, Chicago, IL\n<i>Principal, Caraher Corporation\nChair, Real Estate Committee</i>\n\nDean A. Christiansen, New York, NY\n<i>Principal, Acacia Capital</i>\n\nGeorge Cranmer, Oxfordshire, England\n<i>Director, Cranmer Lawrence, LTD</i>\n\nJerome F. Dausman, Hamilton, NJ\n<i>Director of Analytics, The Detroit Latin School\nInterim Treasurer</i>\n\nPaul Evans, Cincinnati, OH\n<i>Director of Investments, Rosetta Partners</i>\n\nRonald Gardhouse\n<i>V.P. Chrysler Corporation (Ret.)\nChair, Budget & Finance Committee</i>\n\nJae Gardner, New York, NY\n<i>Founder & President, The Ivy Key</i>\n\nDr. Arnold A. Kummerow\n<i>Superintendent, Armada (MI) Area Schools (Ret.)</i>\n\nJohn Lind, Huntington Beach, CA\n<i>President, Lind & Associates\nChair, Enterprise & Development Committee</i>\n\nAndrew Lucaciu, Washington, DC\n<i>Senior Program Analyst, F.E.M.A.</i>\n\nF. Landey Patton, Lexington, VA\n<i>Innkeeper, The Abigail Inn</i>\n\nKymberly Peer, Bloomfield Hills, MI\n<i>Buyer/Director of Operations, Sposa Bella Couture Enterprise & Development Committee</i>\n\nDr. James Tooley, Manchester, England\n<i>Professor of Education Policy, Newcastle University</i>\n\nCurt Welling, Norwich, VT\n<i>Senior Fellow, Tuck School of Management, Dartmouth College</i>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"-25\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580144220065_text\";s:0:\"\";s:24:\"flrich1580144596978_text\";s:0:\"\";s:24:\"flrich1580144657273_text\";s:0:\"\";s:24:\"flrich1580144692076_text\";s:0:\"\";s:24:\"flrich1580145075258_text\";s:0:\"\";s:24:\"flrich1580145092551_text\";s:0:\"\";s:24:\"flrich1580145286675_text\";s:0:\"\";s:24:\"flrich1581098144997_text\";s:0:\"\";s:24:\"flrich1581098387235_text\";s:0:\"\";s:24:\"flrich1581098583501_text\";s:0:\"\";s:24:\"flrich1581098668122_text\";s:0:\"\";s:24:\"flrich1581098710208_text\";s:0:\"\";}}s:13:\"5e2f16b974e78\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f16b974e78\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f1ab1652f3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"13\";s:9:\"photo_src\";s:111:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:4:\"4000\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:13;s:5:\"title\";s:31:\"Biglin_Brothers_Racing_1148x294\";s:8:\"filename\";s:50:\"Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\";s:3:\"url\";s:111:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\";s:4:\"link\";s:66:\"http://gwendowment.org/wordpress1/biglin_brothers_racing_1148x294/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"biglin_brothers_racing_1148x294\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316901000;s:8:\"modified\";d:1580148205000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"f0e2e32731\";s:6:\"delete\";s:10:\"26d3d2e87c\";s:4:\"edit\";s:10:\"7301ab0582\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=13&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:178928;s:21:\"filesizeHumanReadable\";s:6:\"175 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:642;s:5:\"width\";i:1145;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:119:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:168;s:5:\"width\";i:300;s:3:\"url\";s:119:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746-300x168.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:574;s:5:\"width\";i:1024;s:3:\"url\";s:120:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746-1024x574.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:111:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\";s:6:\"height\";i:642;s:5:\"width\";i:1145;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f1ab14a868\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab14a868\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f1ab155f36\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab155f36\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f1ab14a868\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f1ab159c25\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab159c25\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f1ab155f36\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:1:\"8\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f1ab15d915\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab15d915\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f1ab155f36\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"20.97\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f1ab1652f3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab1652f3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f1ab155f36\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"71.03\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f1bdbe510f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1bdbe510f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f2bb632221\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"28\";s:9:\"photo_src\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:28;s:5:\"title\";s:14:\"Vince_Lombardi\";s:8:\"filename\";s:18:\"Vince_Lombardi.jpg\";s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi.jpg\";s:4:\"link\";s:49:\"http://gwendowment.org/wordpress1/vince_lombardi/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:141:\"“People who work together will win, whether it be against complex football defenses, or the problems of modern society.” - Vince Lombardi\";s:4:\"name\";s:14:\"vince_lombardi\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575317063000;s:8:\"modified\";d:1580145872000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"9343b4d6dd\";s:6:\"delete\";s:10:\"2f5c5d6c20\";s:4:\"edit\";s:10:\"29a6694832\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=28&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:10109;s:21:\"filesizeHumanReadable\";s:5:\"10 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:225;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:225;s:5:\"width\";i:300;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi-300x225.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi.jpg\";s:6:\"height\";i:225;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f2695d3c6b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f2695d3c6b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f2bb635f11\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:4:\"text\";s:192:\"<span style = \"font-size: 14px; color: #808080;\"<strong>\"People who work together will win, whether it be against complex football defenses, or the problems of modern society.\"</strong></span>\";s:5:\"color\";s:6:\"cccccc\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580148379175_text\";s:0:\"\";s:24:\"flrich1580149223748_text\";s:0:\"\";s:24:\"flrich1580149290492_text\";s:0:\"\";s:24:\"flrich1580149374371_text\";s:0:\"\";s:24:\"flrich1580149773557_text\";s:0:\"\";s:24:\"flrich1580150026996_text\";s:0:\"\";s:24:\"flrich1580150082296_text\";s:0:\"\";s:24:\"flrich1580150142794_text\";s:0:\"\";s:24:\"flrich1581098276316_text\";s:0:\"\";s:24:\"flrich1581098303945_text\";s:0:\"\";}}s:13:\"5e2f2bb62e532\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f2bb62e532\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f1ab1652f3\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f2bb632221\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f2bb632221\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f2bb62e532\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:33.340000000000003;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"60\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e2f2bb635f11\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f2bb635f11\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f2bb62e532\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"66.66\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"140\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}}'),(332,39,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(333,39,'_fl_builder_enabled','1'),(334,102,'_fl_builder_data','a:12:{s:13:\"5e2f1657a010e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1657a010e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f1ab15d915\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:1592:\"<h3 class=\"spanH\"><span style=\"font-size: 16px;\"><strong>Leadership & Teamwork</strong></span></h3>\n<table>\n<tbody>\n<tr>\n<td></td>\n<td align=\"left\"><b>Board of Governors and Visitors</b>\n\nT. Robinson Ahlstrom, Bloomfield Hills, MI\n<i>Chairman & CEO, GW Scholars Endowment\nChair, Executive Committee</i>\n\nJames Caraher, Chicago, IL\n<i>Principal, Caraher Corporation\nChair, Real Estate Committee</i>\n\nDean A. Christiansen, New York, NY\n<i>Principal, Acacia Capital</i>\n\nGeorge Cranmer, Oxfordshire, England\n<i>Director, Cranmer Lawrence, LTD</i>\n\nJerome F. Dausman, Hamilton, NJ\n<i>Director of Analytics, The Detroit Latin School\nInterim Treasurer</i>\n\nPaul Evans, Cincinnati, OH\n<i>Director of Investments, Rosetta Partners</i>\n\nRonald Gardhouse\n<i>V.P. Chrysler Corporation (Ret.)\nChair, Budget & Finance Committee</i>\n\nJae Gardner, New York, NY\n<i>Founder & President, The Ivy Key</i>\n\nDr. Arnold A. Kummerow\n<i>Superintendent, Armada (MI) Area Schools (Ret.)</i>\n\nJohn Lind, Huntington Beach, CA\n<i>President, Lind & Associates\nChair, Enterprise & Development Committee</i>\n\nAndrew Lucaciu, Washington, DC\n<i>Senior Program Analyst, F.E.M.A.</i>\n\nF. Landey Patton, Lexington, VA\n<i>Innkeeper, The Abigail Inn</i>\n\nKymberly Peer, Bloomfield Hills, MI\n<i>Buyer/Director of Operations, Sposa Bella Couture Enterprise & Development Committee</i>\n\nDr. James Tooley, Manchester, England\n<i>Professor of Education Policy, Newcastle University</i>\n\nCurt Welling, Norwich, VT\n<i>Senior Fellow, Tuck School of Management, Dartmouth College</i></td>\n</tr>\n</tbody>\n</table>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-25\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580144220065_text\";s:0:\"\";s:24:\"flrich1580144596978_text\";s:0:\"\";s:24:\"flrich1580144657273_text\";s:0:\"\";s:24:\"flrich1580144692076_text\";s:0:\"\";s:24:\"flrich1580145075258_text\";s:0:\"\";s:24:\"flrich1580145092551_text\";s:0:\"\";s:24:\"flrich1580145286675_text\";s:0:\"\";}}s:13:\"5e2f16b974e78\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f16b974e78\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f1ab1652f3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"13\";s:9:\"photo_src\";s:111:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:4:\"4000\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:13;s:5:\"title\";s:31:\"Biglin_Brothers_Racing_1148x294\";s:8:\"filename\";s:50:\"Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\";s:3:\"url\";s:111:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\";s:4:\"link\";s:66:\"http://gwendowment.org/wordpress1/biglin_brothers_racing_1148x294/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"biglin_brothers_racing_1148x294\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316901000;s:8:\"modified\";d:1580148205000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"f0e2e32731\";s:6:\"delete\";s:10:\"26d3d2e87c\";s:4:\"edit\";s:10:\"7301ab0582\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=13&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:178928;s:21:\"filesizeHumanReadable\";s:6:\"175 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:642;s:5:\"width\";i:1145;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:119:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:168;s:5:\"width\";i:300;s:3:\"url\";s:119:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746-300x168.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:574;s:5:\"width\";i:1024;s:3:\"url\";s:120:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746-1024x574.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:111:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\";s:6:\"height\";i:642;s:5:\"width\";i:1145;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f1ab14a868\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab14a868\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f1ab155f36\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab155f36\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f1ab14a868\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f1ab159c25\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab159c25\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f1ab155f36\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:1:\"8\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f1ab15d915\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab15d915\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f1ab155f36\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"20.97\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f1ab1652f3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab1652f3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f1ab155f36\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"71.03\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f1bdbe510f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1bdbe510f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f2bb632221\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"28\";s:9:\"photo_src\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:28;s:5:\"title\";s:14:\"Vince_Lombardi\";s:8:\"filename\";s:18:\"Vince_Lombardi.jpg\";s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi.jpg\";s:4:\"link\";s:49:\"http://gwendowment.org/wordpress1/vince_lombardi/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:141:\"“People who work together will win, whether it be against complex football defenses, or the problems of modern society.” - Vince Lombardi\";s:4:\"name\";s:14:\"vince_lombardi\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575317063000;s:8:\"modified\";d:1580145872000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"9343b4d6dd\";s:6:\"delete\";s:10:\"2f5c5d6c20\";s:4:\"edit\";s:10:\"29a6694832\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=28&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:10109;s:21:\"filesizeHumanReadable\";s:5:\"10 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:225;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:225;s:5:\"width\";i:300;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi-300x225.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi.jpg\";s:6:\"height\";i:225;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f2695d3c6b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f2695d3c6b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f2bb635f11\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":38:{s:4:\"text\";s:137:\"<strong>\"People who work together will win, whether it be against complex football defenses, or the problems of modern society.\"</strong>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580148379175_text\";s:0:\"\";s:24:\"flrich1580149223748_text\";s:0:\"\";s:24:\"flrich1580149290492_text\";s:0:\"\";s:24:\"flrich1580149374371_text\";s:0:\"\";s:24:\"flrich1580149773557_text\";s:0:\"\";s:24:\"flrich1580150026996_text\";s:0:\"\";s:24:\"flrich1580150082296_text\";s:0:\"\";s:24:\"flrich1580150142794_text\";s:0:\"\";}}s:13:\"5e2f2bb62e532\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f2bb62e532\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f1ab1652f3\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f2bb632221\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f2bb632221\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f2bb62e532\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:33.340000000000003;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"60\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e2f2bb635f11\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f2bb635f11\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f2bb62e532\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"66.66\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"140\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}}'),(335,102,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(340,105,'_fl_builder_enabled','1'),(341,105,'_fl_theme_layout_type','header'),(342,105,'_fl_builder_data','a:9:{s:13:\"5e3c3a8d55561\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d55561\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c3a8d5556c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d5556c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c3a8d55561\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c3a8d55573\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d55573\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c3a8d5556c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:22:\"rgba(204,204,204,0.59)\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c3a8d55577\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d55577\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3a8d55573\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":51:{s:4:\"text\";s:92:\"<p style=\"text-align: center;\"><strong>The George Washington Scholars Endowment</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"70\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";}}s:13:\"5e3c3a8d5557c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d5557c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3a8d55573\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:10:\"Here\'s how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c3a8d55580\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d55580\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c3a8d55573\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c3a8d55585\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d55585\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c3a8d55580\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c3a8d55589\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d55589\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3a8d55585\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:243:\"<p style=\"text-align: center; text-decoration: underline; text-decoration-color: grey;\"><span style=\"font-size: 25px;\"><span style=\"font-size: 30px; text-decoration: underline;\">Discover and develop genius buried in poverty</span> </span></p>\";s:5:\"color\";s:6:\"2b2b2b\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:8:\"Rosarivo\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";}}s:13:\"5e3c3a8d5558e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d5558e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3a8d55573\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:56:\"<p style=\"text-align: center;\"><strong>1785</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-30\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";s:24:\"flrich1580496686096_text\";s:0:\"\";s:24:\"flrich1580496799990_text\";s:0:\"\";s:24:\"flrich1580496880753_text\";s:0:\"\";s:24:\"flrich1580496943645_text\";s:0:\"\";s:24:\"flrich1580498969041_text\";s:0:\"\";s:24:\"flrich1580499016567_text\";s:0:\"\";s:24:\"flrich1580499353572_text\";s:0:\"\";s:24:\"flrich1580499811828_text\";s:0:\"\";}}}'),(343,105,'_fl_builder_draft','a:9:{s:13:\"5e3c3a8d55561\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d55561\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c3a8d5556c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d5556c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c3a8d55561\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c3a8d55573\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d55573\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c3a8d5556c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:22:\"rgba(204,204,204,0.59)\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c3a8d55577\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d55577\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3a8d55573\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":51:{s:4:\"text\";s:92:\"<p style=\"text-align: center;\"><strong>The George Washington Scholars Endowment</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"70\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";}}s:13:\"5e3c3a8d5557c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d5557c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3a8d55573\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:10:\"Here\'s how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c3a8d55580\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d55580\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c3a8d55573\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c3a8d55585\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d55585\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c3a8d55580\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c3a8d55589\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d55589\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3a8d55585\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:243:\"<p style=\"text-align: center; text-decoration: underline; text-decoration-color: grey;\"><span style=\"font-size: 25px;\"><span style=\"font-size: 30px; text-decoration: underline;\">Discover and develop genius buried in poverty</span> </span></p>\";s:5:\"color\";s:6:\"2b2b2b\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:8:\"Rosarivo\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";}}s:13:\"5e3c3a8d5558e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d5558e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3a8d55573\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:56:\"<p style=\"text-align: center;\"><strong>1785</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-30\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";s:24:\"flrich1580496686096_text\";s:0:\"\";s:24:\"flrich1580496799990_text\";s:0:\"\";s:24:\"flrich1580496880753_text\";s:0:\"\";s:24:\"flrich1580496943645_text\";s:0:\"\";s:24:\"flrich1580498969041_text\";s:0:\"\";s:24:\"flrich1580499016567_text\";s:0:\"\";s:24:\"flrich1580499353572_text\";s:0:\"\";s:24:\"flrich1580499811828_text\";s:0:\"\";}}}'),(344,105,'_edit_lock','1581014176:1'),(345,105,'_edit_last','1'),(346,105,'_fl_theme_builder_locations','a:1:{i:0;s:12:\"post:page:76\";}'),(347,105,'_fl_theme_builder_exclusions','a:0:{}'),(348,105,'_fl_theme_builder_user_rules','a:0:{}'),(349,105,'_fl_theme_builder_logic','a:0:{}'),(350,105,'_fl_theme_layout_settings','a:4:{s:6:\"sticky\";s:1:\"0\";s:6:\"shrink\";s:1:\"0\";s:7:\"overlay\";s:1:\"0\";s:10:\"overlay_bg\";s:11:\"transparent\";}'),(351,105,'_fl_theme_builder_preview_location','post:page:37'),(352,105,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(353,105,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(354,105,'_wp_old_date','2019-12-06'),(355,106,'_fl_builder_data','a:9:{s:13:\"5e3c3ab6cdf4f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf4f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c3ab6cdf59\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf59\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c3ab6cdf4f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c3ab6cdf60\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf60\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c3ab6cdf59\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:22:\"rgba(204,204,204,0.59)\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c3ab6cdf65\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf65\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3ab6cdf60\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":51:{s:4:\"text\";s:92:\"<p style=\"text-align: center;\"><strong>The George Washington Scholars Endowment</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"70\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";}}s:13:\"5e3c3ab6cdf69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf69\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3ab6cdf60\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:10:\"Here\'s how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c3ab6cdf6e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf6e\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c3ab6cdf60\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c3ab6cdf73\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf73\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c3ab6cdf6e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c3ab6cdf77\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf77\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3ab6cdf73\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:243:\"<p style=\"text-align: center; text-decoration: underline; text-decoration-color: grey;\"><span style=\"font-size: 25px;\"><span style=\"font-size: 30px; text-decoration: underline;\">Discover and develop genius buried in poverty</span> </span></p>\";s:5:\"color\";s:6:\"2b2b2b\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:8:\"Rosarivo\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";}}s:13:\"5e3c3ab6cdf7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf7c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3ab6cdf60\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:56:\"<p style=\"text-align: center;\"><strong>1785</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-30\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";s:24:\"flrich1580496686096_text\";s:0:\"\";s:24:\"flrich1580496799990_text\";s:0:\"\";s:24:\"flrich1580496880753_text\";s:0:\"\";s:24:\"flrich1580496943645_text\";s:0:\"\";s:24:\"flrich1580498969041_text\";s:0:\"\";s:24:\"flrich1580499016567_text\";s:0:\"\";s:24:\"flrich1580499353572_text\";s:0:\"\";s:24:\"flrich1580499811828_text\";s:0:\"\";}}}'),(356,106,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(357,106,'_fl_builder_enabled','1'),(358,107,'_fl_builder_data','a:9:{s:13:\"5e3c3ab6cdf4f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf4f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c3ab6cdf59\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf59\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c3ab6cdf4f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c3ab6cdf60\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf60\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c3ab6cdf59\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:22:\"rgba(204,204,204,0.59)\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c3ab6cdf65\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf65\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3ab6cdf60\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":51:{s:4:\"text\";s:92:\"<p style=\"text-align: center;\"><strong>The George Washington Scholars Endowment</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"70\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";}}s:13:\"5e3c3ab6cdf69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf69\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3ab6cdf60\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:10:\"Here\'s how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c3ab6cdf6e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf6e\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c3ab6cdf60\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c3ab6cdf73\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf73\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c3ab6cdf6e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c3ab6cdf77\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf77\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3ab6cdf73\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:243:\"<p style=\"text-align: center; text-decoration: underline; text-decoration-color: grey;\"><span style=\"font-size: 25px;\"><span style=\"font-size: 30px; text-decoration: underline;\">Discover and develop genius buried in poverty</span> </span></p>\";s:5:\"color\";s:6:\"2b2b2b\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:8:\"Rosarivo\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";}}s:13:\"5e3c3ab6cdf7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf7c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3ab6cdf60\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:56:\"<p style=\"text-align: center;\"><strong>1785</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-30\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";s:24:\"flrich1580496686096_text\";s:0:\"\";s:24:\"flrich1580496799990_text\";s:0:\"\";s:24:\"flrich1580496880753_text\";s:0:\"\";s:24:\"flrich1580496943645_text\";s:0:\"\";s:24:\"flrich1580498969041_text\";s:0:\"\";s:24:\"flrich1580499016567_text\";s:0:\"\";s:24:\"flrich1580499353572_text\";s:0:\"\";s:24:\"flrich1580499811828_text\";s:0:\"\";}}}'),(359,107,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(360,106,'_fl_theme_layout_type','header'),(363,108,'_wp_attached_file','2020/02/1950.1514-An-Alcove-in-the-Art-Students-League.jpg'),(364,108,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3000;s:6:\"height\";i:2242;s:4:\"file\";s:58:\"2020/02/1950.1514-An-Alcove-in-the-Art-Students-League.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"1950.1514-An-Alcove-in-the-Art-Students-League-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:58:\"1950.1514-An-Alcove-in-the-Art-Students-League-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"1950.1514-An-Alcove-in-the-Art-Students-League-768x574.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"1950.1514-An-Alcove-in-the-Art-Students-League-1024x765.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:765;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:{}}}'),(365,76,'_fl_builder_data','a:16:{s:13:\"5e3c4e59c908e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c908e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":142:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c4e59c9099\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c9099\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c908e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90a0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c9099\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"10\";s:9:\"top_right\";s:2:\"10\";s:11:\"bottom_left\";s:2:\"10\";s:12:\"bottom_right\";s:2:\"10\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90a9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":73:{s:4:\"text\";s:12:\"Find out how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:59:\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"duo_color1\";s:0:\"\";s:10:\"duo_color2\";s:0:\"\";s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c4e59c90ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90ad\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c90ad\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:3:\"100\";s:15:\"size_responsive\";s:3:\"100\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"32\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90b2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":77:{s:4:\"text\";s:156:\"<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 45px;\"><em>Discover and develop genius buried in poverty.</em></span></p>\";s:5:\"color\";s:6:\"e8e8e8\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"190\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";s:24:\"flrich1581011019155_text\";s:0:\"\";s:24:\"flrich1581011050367_text\";s:0:\"\";s:24:\"flrich1581013921071_text\";s:0:\"\";s:24:\"flrich1581013971763_text\";s:0:\"\";s:24:\"flrich1581024806923_text\";s:0:\"\";s:24:\"flrich1581024846716_text\";s:0:\"\";s:24:\"flrich1581024987925_text\";s:0:\"\";s:24:\"flrich1581025004526_text\";s:0:\"\";s:24:\"flrich1581031573330_text\";s:0:\"\";s:24:\"flrich1581031699580_text\";s:0:\"\";s:24:\"flrich1581031805420_text\";s:0:\"\";s:24:\"flrich1581031918231_text\";s:0:\"\";s:24:\"flrich1581033525614_text\";s:0:\"\";s:24:\"flrich1581033650175_text\";s:0:\"\";s:24:\"flrich1581033842313_text\";s:0:\"\";s:24:\"flrich1581033948047_text\";s:0:\"\";s:24:\"flrich1581034131482_text\";s:0:\"\";s:24:\"flrich1581034160102_text\";s:0:\"\";s:24:\"flrich1581034416371_text\";s:0:\"\";s:24:\"flrich1581099007208_text\";s:0:\"\";s:24:\"flrich1581099115892_text\";s:0:\"\";s:24:\"flrich1581099720891_text\";s:0:\"\";s:24:\"flrich1581100055532_text\";s:0:\"\";s:24:\"flrich1581100276169_text\";s:0:\"\";s:24:\"flrich1581114371000_text\";s:0:\"\";s:24:\"flrich1581114924101_text\";s:0:\"\";s:24:\"flrich1581115222012_text\";s:0:\"\";s:24:\"flrich1581115259466_text\";s:0:\"\";}}s:13:\"5e3c509278f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c509278f9f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:3:\"150\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5092894d9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5092894d9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c50928988a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c50928988a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:43.93;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c51e8b9546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c51e8b9546\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c50928988a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"cccccc\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b286c8c576\";s:6:\"delete\";s:10:\"5134a89e91\";s:4:\"edit\";s:10:\"99ffdd8e1c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e3c523ae1fcb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c523ae1fcb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"56.07\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:6:\"ffffff\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"17\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c525fdd3b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c525fdd3b2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c523ae1fcb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:12:\"mobile_title\";s:4:\"Menu\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"f4f4f4\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5e3c54857e283\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e283\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c54857e636\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e636\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c54857e283\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-40\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c54857e08a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e08a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c54857e636\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"39\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(366,76,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:56:\".fl-page-header{display: none;}\r\n.fl-menu {body: white;}\";s:2:\"js\";s:0:\"\";}'),(367,76,'_fl_builder_enabled','1'),(368,109,'_fl_builder_data','a:8:{s:13:\"5e3c3bac505e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3bac505e2\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c3bac505ed\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3bac505ed\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c3bac505e2\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c3bac505f3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3bac505f3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c3bac505ed\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"cccccc\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:2:\"50\";s:12:\"bottom_right\";s:2:\"50\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-19\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"49\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c3bac505f8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3bac505f8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3bac505f3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":55:{s:4:\"text\";s:109:\"<div style=\"background-color: lightgray;\">\n\n<strong>The George Washington Scholars Endowment</strong>\n\n</div>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";s:24:\"flrich1581008407534_text\";s:0:\"\";s:24:\"flrich1581008461545_text\";s:0:\"\";s:24:\"flrich1581008620399_text\";s:0:\"\";s:24:\"flrich1581008644626_text\";s:0:\"\";}}s:13:\"5e3c3bac505fd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3bac505fd\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3bac505f3\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:23:\"Inspire Young Minds Now\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c3bac50601\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3bac50601\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c3bac505f3\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c3bac50606\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3bac50606\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c3bac50601\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c3bac5060a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3bac5060a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3bac50606\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:186:\"<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 40px;\"><span style=\"font-size: 60px;\">Discover and develop genius buried in poverty</span> </span></p>\";s:5:\"color\";s:6:\"424242\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Yesteryear\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";}}}'),(369,109,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:31:\".fl-page-header{display: none;}\";s:2:\"js\";s:0:\"\";}'),(370,110,'_fl_builder_data','a:8:{s:13:\"5e3c4d57d0a78\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a78\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c4d57d0a82\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a82\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4d57d0a78\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4d57d0a88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4d57d0a82\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"cccccc\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:2:\"50\";s:12:\"bottom_right\";s:2:\"50\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-19\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"49\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4d57d0a8d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a8d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4d57d0a88\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":55:{s:4:\"text\";s:109:\"<div style=\"background-color: lightgray;\">\n\n<strong>The George Washington Scholars Endowment</strong>\n\n</div>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";s:24:\"flrich1581008407534_text\";s:0:\"\";s:24:\"flrich1581008461545_text\";s:0:\"\";s:24:\"flrich1581008620399_text\";s:0:\"\";s:24:\"flrich1581008644626_text\";s:0:\"\";}}s:13:\"5e3c4d57d0a91\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a91\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4d57d0a88\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:23:\"Inspire Young Minds Now\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c4d57d0a96\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a96\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4d57d0a88\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4d57d0a9a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a9a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4d57d0a96\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4d57d0a9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4d57d0a9a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:186:\"<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 40px;\"><span style=\"font-size: 60px;\">Discover and develop genius buried in poverty</span> </span></p>\";s:5:\"color\";s:6:\"424242\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Yesteryear\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";}}}'),(371,110,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:31:\".fl-page-header{display: none;}\";s:2:\"js\";s:0:\"\";}'),(372,110,'_fl_builder_enabled','1'),(373,111,'_fl_builder_data','a:8:{s:13:\"5e3c4d57d0a78\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a78\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c4d57d0a82\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a82\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4d57d0a78\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4d57d0a88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4d57d0a82\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"cccccc\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:2:\"50\";s:12:\"bottom_right\";s:2:\"50\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-19\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"49\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4d57d0a8d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a8d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4d57d0a88\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":55:{s:4:\"text\";s:109:\"<div style=\"background-color: lightgray;\">\n\n<strong>The George Washington Scholars Endowment</strong>\n\n</div>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";s:24:\"flrich1581008407534_text\";s:0:\"\";s:24:\"flrich1581008461545_text\";s:0:\"\";s:24:\"flrich1581008620399_text\";s:0:\"\";s:24:\"flrich1581008644626_text\";s:0:\"\";}}s:13:\"5e3c4d57d0a91\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a91\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4d57d0a88\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:23:\"Inspire Young Minds Now\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c4d57d0a96\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a96\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4d57d0a88\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4d57d0a9a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a9a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4d57d0a96\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4d57d0a9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4d57d0a9a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:186:\"<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 40px;\"><span style=\"font-size: 60px;\">Discover and develop genius buried in poverty</span> </span></p>\";s:5:\"color\";s:6:\"424242\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Yesteryear\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";}}}'),(374,111,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:31:\".fl-page-header{display: none;}\";s:2:\"js\";s:0:\"\";}'),(375,112,'_fl_builder_data','a:17:{s:13:\"5e3c4e59c908e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c908e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c4e59c9099\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c9099\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c908e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90a0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c9099\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"cccccc\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:2:\"50\";s:12:\"bottom_right\";s:2:\"50\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90a4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":57:{s:4:\"text\";s:96:\"<div style=\"background-color: #4b5887;\">\n\nThe George Washington Scholars Endowment\n\n1787\n\n</div>\";s:5:\"color\";s:6:\"efefef\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";s:24:\"flrich1581008407534_text\";s:0:\"\";s:24:\"flrich1581008461545_text\";s:0:\"\";s:24:\"flrich1581008620399_text\";s:0:\"\";s:24:\"flrich1581008644626_text\";s:0:\"\";s:24:\"flrich1581010771548_text\";s:0:\"\";s:24:\"flrich1581010994739_text\";s:0:\"\";}}s:13:\"5e3c4e59c90a9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:23:\"Inspire Young Minds Now\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c4e59c90ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90ad\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c90ad\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:3:\"100\";s:15:\"size_responsive\";s:3:\"100\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"1\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90b2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":49:{s:4:\"text\";s:186:\"<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 40px;\"><span style=\"font-size: 60px;\">Discover and develop genius buried in poverty</span> </span></p>\";s:5:\"color\";s:6:\"424242\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Yesteryear\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";s:24:\"flrich1581011019155_text\";s:0:\"\";s:24:\"flrich1581011050367_text\";s:0:\"\";}}s:13:\"5e3c509278f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c509278f9f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5092894d9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5092894d9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c50928988a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c50928988a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:50;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c51e8b9546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c51e8b9546\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c50928988a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"cccccc\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b286c8c576\";s:6:\"delete\";s:10:\"5134a89e91\";s:4:\"edit\";s:10:\"99ffdd8e1c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e3c523ae1fcb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c523ae1fcb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:50;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c525fdd3b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c525fdd3b2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c523ae1fcb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:0:\"\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5e3c54857e283\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e283\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c54857e636\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e636\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c54857e283\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-40\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c54857e08a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e08a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c54857e636\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"39\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(376,112,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:56:\".fl-page-header{display: none;}\r\n.fl-menu {body: white;}\";s:2:\"js\";s:0:\"\";}'),(377,113,'_fl_builder_data','a:17:{s:13:\"5e3c4e59c908e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c908e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c4e59c9099\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c9099\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c908e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90a0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c9099\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"cccccc\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:2:\"50\";s:12:\"bottom_right\";s:2:\"50\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90a4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:4:\"text\";s:96:\"<div style=\"background-color: #4b5887;\">\n\nThe George Washington Scholars Endowment\n\n1785\n\n</div>\";s:5:\"color\";s:6:\"efefef\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";s:24:\"flrich1581008407534_text\";s:0:\"\";s:24:\"flrich1581008461545_text\";s:0:\"\";s:24:\"flrich1581008620399_text\";s:0:\"\";s:24:\"flrich1581008644626_text\";s:0:\"\";s:24:\"flrich1581010771548_text\";s:0:\"\";s:24:\"flrich1581010994739_text\";s:0:\"\";s:24:\"flrich1581012929831_text\";s:0:\"\";}}s:13:\"5e3c4e59c90a9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:23:\"Inspire Young Minds Now\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c4e59c90ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90ad\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c90ad\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:3:\"100\";s:15:\"size_responsive\";s:3:\"100\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"1\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90b2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":49:{s:4:\"text\";s:186:\"<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 40px;\"><span style=\"font-size: 60px;\">Discover and develop genius buried in poverty</span> </span></p>\";s:5:\"color\";s:6:\"424242\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Yesteryear\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";s:24:\"flrich1581011019155_text\";s:0:\"\";s:24:\"flrich1581011050367_text\";s:0:\"\";}}s:13:\"5e3c509278f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c509278f9f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5092894d9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5092894d9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c50928988a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c50928988a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:50;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c51e8b9546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c51e8b9546\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c50928988a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"cccccc\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b286c8c576\";s:6:\"delete\";s:10:\"5134a89e91\";s:4:\"edit\";s:10:\"99ffdd8e1c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e3c523ae1fcb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c523ae1fcb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:50;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c525fdd3b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c525fdd3b2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c523ae1fcb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:0:\"\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5e3c54857e283\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e283\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c54857e636\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e636\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c54857e283\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-40\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c54857e08a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e08a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c54857e636\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"39\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(378,113,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:56:\".fl-page-header{display: none;}\r\n.fl-menu {body: white;}\";s:2:\"js\";s:0:\"\";}'); INSERT INTO `wp_postmeta` VALUES (379,114,'_fl_builder_data','a:17:{s:13:\"5e3c4e59c908e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c908e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c4e59c9099\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c9099\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c908e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90a0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c9099\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"cccccc\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:2:\"50\";s:12:\"bottom_right\";s:2:\"50\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-30\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90a4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:4:\"text\";s:96:\"<div style=\"background-color: #4b5887;\">\n\nThe George Washington Scholars Endowment\n\n1785\n\n</div>\";s:5:\"color\";s:6:\"efefef\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";s:24:\"flrich1581008407534_text\";s:0:\"\";s:24:\"flrich1581008461545_text\";s:0:\"\";s:24:\"flrich1581008620399_text\";s:0:\"\";s:24:\"flrich1581008644626_text\";s:0:\"\";s:24:\"flrich1581010771548_text\";s:0:\"\";s:24:\"flrich1581010994739_text\";s:0:\"\";s:24:\"flrich1581012929831_text\";s:0:\"\";}}s:13:\"5e3c4e59c90a9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:23:\"Inspire Young Minds Now\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c4e59c90ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90ad\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c90ad\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:3:\"100\";s:15:\"size_responsive\";s:3:\"100\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"1\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90b2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":51:{s:4:\"text\";s:186:\"<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 40px;\"><span style=\"font-size: 60px;\">Discover and develop genius buried in poverty</span> </span></p>\";s:5:\"color\";s:6:\"424242\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Yesteryear\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"-1\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";s:24:\"flrich1581011019155_text\";s:0:\"\";s:24:\"flrich1581011050367_text\";s:0:\"\";s:24:\"flrich1581013921071_text\";s:0:\"\";s:24:\"flrich1581013971763_text\";s:0:\"\";}}s:13:\"5e3c509278f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c509278f9f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5092894d9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5092894d9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c50928988a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c50928988a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:50;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c51e8b9546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c51e8b9546\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c50928988a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"cccccc\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b286c8c576\";s:6:\"delete\";s:10:\"5134a89e91\";s:4:\"edit\";s:10:\"99ffdd8e1c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e3c523ae1fcb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c523ae1fcb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:50;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c525fdd3b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c525fdd3b2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c523ae1fcb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:0:\"\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5e3c54857e283\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e283\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c54857e636\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e636\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c54857e283\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-40\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c54857e08a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e08a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c54857e636\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"39\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(380,114,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:56:\".fl-page-header{display: none;}\r\n.fl-menu {body: white;}\";s:2:\"js\";s:0:\"\";}'),(381,105,'_wp_trash_meta_status','draft'),(382,105,'_wp_trash_meta_time','1581014204'),(383,105,'_wp_desired_post_slug','front-page-copy-copy'),(384,115,'_fl_builder_data','a:9:{s:13:\"5e3c3a8d55561\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d55561\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c3a8d5556c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d5556c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c3a8d55561\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c3a8d55573\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d55573\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c3a8d5556c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:22:\"rgba(204,204,204,0.59)\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c3a8d55577\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d55577\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3a8d55573\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":51:{s:4:\"text\";s:92:\"<p style=\"text-align: center;\"><strong>The George Washington Scholars Endowment</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"70\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";}}s:13:\"5e3c3a8d5557c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d5557c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3a8d55573\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:10:\"Here\'s how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c3a8d55580\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d55580\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c3a8d55573\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c3a8d55585\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d55585\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c3a8d55580\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c3a8d55589\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d55589\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3a8d55585\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:243:\"<p style=\"text-align: center; text-decoration: underline; text-decoration-color: grey;\"><span style=\"font-size: 25px;\"><span style=\"font-size: 30px; text-decoration: underline;\">Discover and develop genius buried in poverty</span> </span></p>\";s:5:\"color\";s:6:\"2b2b2b\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:8:\"Rosarivo\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";}}s:13:\"5e3c3a8d5558e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3a8d5558e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3a8d55573\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:56:\"<p style=\"text-align: center;\"><strong>1785</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-30\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";s:24:\"flrich1580496686096_text\";s:0:\"\";s:24:\"flrich1580496799990_text\";s:0:\"\";s:24:\"flrich1580496880753_text\";s:0:\"\";s:24:\"flrich1580496943645_text\";s:0:\"\";s:24:\"flrich1580498969041_text\";s:0:\"\";s:24:\"flrich1580499016567_text\";s:0:\"\";s:24:\"flrich1580499353572_text\";s:0:\"\";s:24:\"flrich1580499811828_text\";s:0:\"\";}}}'),(385,115,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(386,116,'_fl_builder_enabled','1'),(387,116,'_fl_theme_layout_type','footer'),(388,116,'_fl_builder_data','a:14:{s:13:\"5e3c5cf57ebf0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebf0\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"10\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5cf57ebf5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebf5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c5cf57ebf0\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c5cf57ebf9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebf9\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5cf57ebf5\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:33.329999999999998;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ebfe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebfe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5cf57ebf5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:33.329999999999998;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ec03\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec03\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5cf57ebf5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:33.329999999999998;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ec0c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec0c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418413\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:12:\"fas fa-phone\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:58:\"<p><span style=\"color: #9b9b9b;\">1-800-275-0002</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:6:\"7f7f7f\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"5\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec10\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec10\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418440\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:15:\"far fa-envelope\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:61:\"<p><span style=\"color: #9b9b9b;\">hi@loremipsum.com</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"3\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec2b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec2b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418413\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:12:\"fas fa-phone\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:58:\"<p><span style=\"color: #9b9b9b;\">1-800-275-0002</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:6:\"7f7f7f\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"5\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec2f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418440\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:15:\"far fa-envelope\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:61:\"<p><span style=\"color: #9b9b9b;\">hi@loremipsum.com</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"3\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5e5444d74\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5e5444d74\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c5cf57ebfe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:4:\"text\";s:168:\"<p style=\"text-align: center;\">Contact: info@gwendowment.org</p>\n<p style=\"text-align: center;\">P. O. Box 2356,</p>\n<p style=\"text-align: center;\">Detroit, MI 48202</p>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1581014614400_text\";s:0:\"\";s:24:\"flrich1581014648762_text\";s:0:\"\";s:24:\"flrich1581014688246_text\";s:0:\"\";s:24:\"flrich1581025605769_text\";s:0:\"\";}}s:13:\"5e3c89131488a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c89131488a\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c89131f110\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c89131f110\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c89131488a\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c89131f47b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c89131f47b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c89131f110\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c891313afd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c891313afd\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c89131f47b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(389,116,'_fl_builder_draft','a:14:{s:13:\"5e3c5cf57ebf0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebf0\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"10\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5cf57ebf5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebf5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c5cf57ebf0\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c5cf57ebf9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebf9\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5cf57ebf5\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:33.329999999999998;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ebfe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebfe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5cf57ebf5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:33.329999999999998;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ec03\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec03\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5cf57ebf5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:33.329999999999998;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ec0c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec0c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418413\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:12:\"fas fa-phone\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:58:\"<p><span style=\"color: #9b9b9b;\">1-800-275-0002</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:6:\"7f7f7f\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"5\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec10\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec10\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418440\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:15:\"far fa-envelope\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:61:\"<p><span style=\"color: #9b9b9b;\">hi@loremipsum.com</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"3\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec2b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec2b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418413\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:12:\"fas fa-phone\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:58:\"<p><span style=\"color: #9b9b9b;\">1-800-275-0002</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:6:\"7f7f7f\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"5\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec2f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418440\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:15:\"far fa-envelope\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:61:\"<p><span style=\"color: #9b9b9b;\">hi@loremipsum.com</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"3\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5e5444d74\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5e5444d74\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c5cf57ebfe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:4:\"text\";s:168:\"<p style=\"text-align: center;\">Contact: info@gwendowment.org</p>\n<p style=\"text-align: center;\">P. O. Box 2356,</p>\n<p style=\"text-align: center;\">Detroit, MI 48202</p>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1581014614400_text\";s:0:\"\";s:24:\"flrich1581014648762_text\";s:0:\"\";s:24:\"flrich1581014688246_text\";s:0:\"\";s:24:\"flrich1581025605769_text\";s:0:\"\";}}s:13:\"5e3c89131488a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c89131488a\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c89131f110\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c89131f110\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c89131488a\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c89131f47b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c89131f47b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c89131f110\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c891313afd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c891313afd\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c89131f47b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(390,116,'_edit_lock','1581699390:1'),(391,116,'_edit_last','1'),(392,117,'_fl_builder_data','a:21:{s:13:\"5e3c5cf57ebd3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebd3\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":129:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:6:\"5d1b89\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"13\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:8:\"node_tag\";s:3:\"div\";s:11:\"connections\";a:3:{s:8:\"bg_image\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ebe0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebe0\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c5cf57ebd3\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c5cf57ebe6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebe6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5cf57ebe0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c5cf57ebeb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebeb\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c5cf57ebe6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:4:\"text\";s:82:\"<p style=\"text-align: center;\">© 2017 [wpbb site:title]. All Rights Reserved.</p>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";s:0:\"\";s:17:\"typography_medium\";s:0:\"\";s:21:\"typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"node_tag\";s:3:\"div\";s:11:\"connections\";a:1:{s:4:\"text\";s:0:\"\";}}}s:13:\"5e3c5cf57ebf0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebf0\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:6:\"652190\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"40\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:3:{s:8:\"bg_image\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ebf5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebf5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c5cf57ebf0\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c5cf57ebf9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebf9\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5cf57ebf5\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:33.329999999999998;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ebfe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebfe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5cf57ebf5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:33.329999999999998;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ec03\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec03\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5cf57ebf5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:33.329999999999998;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ec07\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec07\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c5cf57ebf9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":30:{s:4:\"text\";s:144:\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.\";s:5:\"color\";s:0:\"\";s:10:\"typography\";s:0:\"\";s:17:\"typography_medium\";s:0:\"\";s:21:\"typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:1:{s:4:\"text\";s:0:\"\";}}}s:13:\"5e3c5cf57ec0c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec0c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418413\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:12:\"fas fa-phone\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:58:\"<p><span style=\"color: #9b9b9b;\">1-800-275-0002</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:6:\"7f7f7f\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"5\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec10\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec10\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418440\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:15:\"far fa-envelope\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:61:\"<p><span style=\"color: #9b9b9b;\">hi@loremipsum.com</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"3\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec15\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec15\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c5cf57ec03\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":50:{s:4:\"icon\";s:10:\"far fa-map\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:34:\"1234 Winchester Blvd. Campbell, CA\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:4:\"left\";s:5:\"color\";s:6:\"ffffff\";s:11:\"hover_color\";s:6:\"f4f4f4\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec19\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec19\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c5cf57ec03\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":50:{s:4:\"icon\";s:15:\"far fa-envelope\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:17:\"hi@loremipsum.com\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:4:\"left\";s:5:\"color\";s:6:\"ffffff\";s:11:\"hover_color\";s:6:\"efefef\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec1d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec1d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c5cf57ec03\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":50:{s:4:\"icon\";s:12:\"fas fa-phone\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:14:\"1-800-999-9999\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:4:\"left\";s:5:\"color\";s:6:\"ffffff\";s:11:\"hover_color\";s:6:\"efefef\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec22\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec22\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c5cf57ebfe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:7:\"heading\";s:20:\"Additional Resources\";s:3:\"tag\";s:2:\"h3\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:3:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:10:\"text_align\";s:4:\"left\";}s:17:\"typography_medium\";a:0:{}s:21:\"typography_responsive\";a:0:{}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"connections\";a:2:{s:7:\"heading\";s:0:\"\";s:4:\"link\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec26\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec26\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c5cf57ebfe\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":30:{s:4:\"text\";s:89:\"<a href=\"#\">FAQ</a>\n\n<a href=\"#\">Privacy policy</a>\n\n<a href=\"#\">Terms and conditions</a>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";s:0:\"\";s:17:\"typography_medium\";s:0:\"\";s:21:\"typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:1:{s:4:\"text\";s:0:\"\";}}}s:13:\"5e3c5cf57ec2b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec2b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418413\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:12:\"fas fa-phone\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:58:\"<p><span style=\"color: #9b9b9b;\">1-800-275-0002</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:6:\"7f7f7f\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"5\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec2f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418440\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:15:\"far fa-envelope\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:61:\"<p><span style=\"color: #9b9b9b;\">hi@loremipsum.com</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"3\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec34\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec34\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c5cf57ebf9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:7:\"heading\";s:8:\"About Us\";s:3:\"tag\";s:2:\"h3\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:3:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:10:\"text_align\";s:4:\"left\";}s:17:\"typography_medium\";a:0:{}s:21:\"typography_responsive\";a:0:{}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"connections\";a:2:{s:7:\"heading\";s:0:\"\";s:4:\"link\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec38\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec38\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c5cf57ec03\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:7:\"heading\";s:13:\"Get In Touch!\";s:3:\"tag\";s:2:\"h3\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:3:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:10:\"text_align\";s:4:\"left\";}s:17:\"typography_medium\";a:0:{}s:21:\"typography_responsive\";a:0:{}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"connections\";a:2:{s:7:\"heading\";s:0:\"\";s:4:\"link\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}}'),(393,117,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(394,116,'_fl_theme_builder_locations','a:1:{i:0;s:9:\"post:page\";}'),(395,116,'_fl_theme_builder_exclusions','a:0:{}'),(396,116,'_fl_theme_builder_user_rules','a:0:{}'),(397,116,'_fl_theme_builder_logic','a:0:{}'),(398,116,'_fl_theme_layout_settings','a:4:{s:6:\"sticky\";s:1:\"0\";s:6:\"shrink\";s:1:\"0\";s:7:\"overlay\";s:1:\"0\";s:10:\"overlay_bg\";s:11:\"transparent\";}'),(399,116,'_fl_theme_builder_preview_location','post:post:1'),(400,116,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:31:\".fl-page-header{display: none;}\";s:2:\"js\";s:0:\"\";}'),(401,116,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:31:\".fl-page-header{display: none;}\";s:2:\"js\";s:0:\"\";}'),(402,118,'_fl_builder_data','a:10:{s:13:\"5e3c5cf57ebf0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebf0\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"10\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5cf57ebf5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebf5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c5cf57ebf0\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c5cf57ebf9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebf9\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5cf57ebf5\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:33.329999999999998;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ebfe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebfe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5cf57ebf5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:33.329999999999998;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ec03\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec03\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5cf57ebf5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:33.329999999999998;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ec0c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec0c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418413\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:12:\"fas fa-phone\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:58:\"<p><span style=\"color: #9b9b9b;\">1-800-275-0002</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:6:\"7f7f7f\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"5\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec10\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec10\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418440\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:15:\"far fa-envelope\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:61:\"<p><span style=\"color: #9b9b9b;\">hi@loremipsum.com</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"3\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec2b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec2b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418413\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:12:\"fas fa-phone\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:58:\"<p><span style=\"color: #9b9b9b;\">1-800-275-0002</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:6:\"7f7f7f\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"5\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec2f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418440\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:15:\"far fa-envelope\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:61:\"<p><span style=\"color: #9b9b9b;\">hi@loremipsum.com</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"3\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5e5444d74\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5e5444d74\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c5cf57ebfe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:4:\"text\";s:168:\"<p style=\"text-align: center;\">Contact: info@gwendowment.org</p>\n<p style=\"text-align: center;\">P. O. Box 2356,</p>\n<p style=\"text-align: center;\">Detroit, MI 48202</p>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1581014614400_text\";s:0:\"\";s:24:\"flrich1581014648762_text\";s:0:\"\";s:24:\"flrich1581014688246_text\";s:0:\"\";}}}'),(403,118,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:31:\".fl-page-header{display: none;}\";s:2:\"js\";s:0:\"\";}'),(404,119,'_fl_builder_data','a:17:{s:13:\"5e3c4e59c908e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c908e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c4e59c9099\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c9099\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c908e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90a0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c9099\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"cccccc\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:2:\"50\";s:12:\"bottom_right\";s:2:\"50\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-30\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90a4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:4:\"text\";s:96:\"<div style=\"background-color: #4b5887;\">\n\nThe George Washington Scholars Endowment\n\n1785\n\n</div>\";s:5:\"color\";s:6:\"efefef\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";s:24:\"flrich1581008407534_text\";s:0:\"\";s:24:\"flrich1581008461545_text\";s:0:\"\";s:24:\"flrich1581008620399_text\";s:0:\"\";s:24:\"flrich1581008644626_text\";s:0:\"\";s:24:\"flrich1581010771548_text\";s:0:\"\";s:24:\"flrich1581010994739_text\";s:0:\"\";s:24:\"flrich1581012929831_text\";s:0:\"\";}}s:13:\"5e3c4e59c90a9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:23:\"Inspire Young Minds Now\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c4e59c90ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90ad\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c90ad\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:3:\"100\";s:15:\"size_responsive\";s:3:\"100\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"1\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90b2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":51:{s:4:\"text\";s:186:\"<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 40px;\"><span style=\"font-size: 60px;\">Discover and develop genius buried in poverty</span> </span></p>\";s:5:\"color\";s:6:\"424242\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Yesteryear\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"-1\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";s:24:\"flrich1581011019155_text\";s:0:\"\";s:24:\"flrich1581011050367_text\";s:0:\"\";s:24:\"flrich1581013921071_text\";s:0:\"\";s:24:\"flrich1581013971763_text\";s:0:\"\";}}s:13:\"5e3c509278f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c509278f9f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5092894d9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5092894d9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c50928988a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c50928988a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:50;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c51e8b9546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c51e8b9546\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c50928988a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"cccccc\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b286c8c576\";s:6:\"delete\";s:10:\"5134a89e91\";s:4:\"edit\";s:10:\"99ffdd8e1c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e3c523ae1fcb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c523ae1fcb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:50;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c525fdd3b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c525fdd3b2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c523ae1fcb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:0:\"\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5e3c54857e283\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e283\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c54857e636\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e636\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c54857e283\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-40\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c54857e08a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e08a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c54857e636\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"39\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(405,119,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:56:\".fl-page-header{display: none;}\r\n.fl-menu {body: white;}\";s:2:\"js\";s:0:\"\";}'),(406,120,'_fl_builder_data','a:17:{s:13:\"5e3c4e59c908e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c908e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c4e59c9099\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c9099\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c908e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90a0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c9099\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"cccccc\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"50\";s:9:\"top_right\";s:2:\"50\";s:11:\"bottom_left\";s:2:\"50\";s:12:\"bottom_right\";s:2:\"50\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90a9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:23:\"Inspire Young Minds Now\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c4e59c90ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90ad\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c90ad\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:3:\"100\";s:15:\"size_responsive\";s:3:\"100\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"1\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90b2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":55:{s:4:\"text\";s:254:\"<div style=\"background-color: white; border-radius: 20px;\">\n<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 40px;\"><span style=\"font-size: 60px;\">Discover and develop genius buried in poverty</span> </span></p>\n\n</div>\";s:5:\"color\";s:6:\"424242\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Yesteryear\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"-1\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";s:24:\"flrich1581011019155_text\";s:0:\"\";s:24:\"flrich1581011050367_text\";s:0:\"\";s:24:\"flrich1581013921071_text\";s:0:\"\";s:24:\"flrich1581013971763_text\";s:0:\"\";s:24:\"flrich1581024806923_text\";s:0:\"\";s:24:\"flrich1581024846716_text\";s:0:\"\";s:24:\"flrich1581024987925_text\";s:0:\"\";s:24:\"flrich1581025004526_text\";s:0:\"\";}}s:13:\"5e3c509278f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c509278f9f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5092894d9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5092894d9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c50928988a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c50928988a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:50;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c51e8b9546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c51e8b9546\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c50928988a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"cccccc\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b286c8c576\";s:6:\"delete\";s:10:\"5134a89e91\";s:4:\"edit\";s:10:\"99ffdd8e1c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e3c523ae1fcb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c523ae1fcb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:50;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c525fdd3b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c525fdd3b2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c523ae1fcb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:0:\"\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5e3c54857e283\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e283\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c54857e636\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e636\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c54857e283\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-40\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c54857e08a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e08a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c54857e636\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"39\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}s:13:\"5e3c84c5c88e7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c84c5c88e7\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":61:{s:4:\"text\";s:128:\"<div style=\"background-color: #4b5887; border-radius: 20px;\">\n<p>The George Washington Scholars Endowment</p>\n<p>1785</p>\n</div>\";s:5:\"color\";s:6:\"efefef\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";s:24:\"flrich1581008407534_text\";s:0:\"\";s:24:\"flrich1581008461545_text\";s:0:\"\";s:24:\"flrich1581008620399_text\";s:0:\"\";s:24:\"flrich1581008644626_text\";s:0:\"\";s:24:\"flrich1581010771548_text\";s:0:\"\";s:24:\"flrich1581010994739_text\";s:0:\"\";s:24:\"flrich1581012929831_text\";s:0:\"\";s:24:\"flrich1581024487803_text\";s:0:\"\";s:24:\"flrich1581024557979_text\";s:0:\"\";s:24:\"flrich1581024997950_text\";s:0:\"\";}}}'),(407,120,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:56:\".fl-page-header{display: none;}\r\n.fl-menu {body: white;}\";s:2:\"js\";s:0:\"\";}'),(408,121,'_fl_builder_data','a:17:{s:13:\"5e3c4e59c908e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c908e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c4e59c9099\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c9099\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c908e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90a0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c9099\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"cccccc\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"50\";s:9:\"top_right\";s:2:\"50\";s:11:\"bottom_left\";s:2:\"50\";s:12:\"bottom_right\";s:2:\"50\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90a9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:23:\"Inspire Young Minds Now\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:59:\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c4e59c90ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90ad\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c90ad\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:3:\"100\";s:15:\"size_responsive\";s:3:\"100\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"1\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90b2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":55:{s:4:\"text\";s:254:\"<div style=\"background-color: white; border-radius: 20px;\">\n<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 40px;\"><span style=\"font-size: 60px;\">Discover and develop genius buried in poverty</span> </span></p>\n\n</div>\";s:5:\"color\";s:6:\"424242\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Yesteryear\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"-1\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";s:24:\"flrich1581011019155_text\";s:0:\"\";s:24:\"flrich1581011050367_text\";s:0:\"\";s:24:\"flrich1581013921071_text\";s:0:\"\";s:24:\"flrich1581013971763_text\";s:0:\"\";s:24:\"flrich1581024806923_text\";s:0:\"\";s:24:\"flrich1581024846716_text\";s:0:\"\";s:24:\"flrich1581024987925_text\";s:0:\"\";s:24:\"flrich1581025004526_text\";s:0:\"\";}}s:13:\"5e3c509278f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c509278f9f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5092894d9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5092894d9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c50928988a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c50928988a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:50;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c51e8b9546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c51e8b9546\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c50928988a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"cccccc\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b286c8c576\";s:6:\"delete\";s:10:\"5134a89e91\";s:4:\"edit\";s:10:\"99ffdd8e1c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e3c523ae1fcb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c523ae1fcb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:50;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c525fdd3b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c525fdd3b2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c523ae1fcb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:0:\"\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5e3c54857e283\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e283\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c54857e636\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e636\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c54857e283\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-40\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c54857e08a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e08a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c54857e636\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"39\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}s:13:\"5e3c84c5c88e7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c84c5c88e7\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":61:{s:4:\"text\";s:128:\"<div style=\"background-color: #4b5887; border-radius: 20px;\">\n<p>The George Washington Scholars Endowment</p>\n<p>1785</p>\n</div>\";s:5:\"color\";s:6:\"efefef\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";s:24:\"flrich1581008407534_text\";s:0:\"\";s:24:\"flrich1581008461545_text\";s:0:\"\";s:24:\"flrich1581008620399_text\";s:0:\"\";s:24:\"flrich1581008644626_text\";s:0:\"\";s:24:\"flrich1581010771548_text\";s:0:\"\";s:24:\"flrich1581010994739_text\";s:0:\"\";s:24:\"flrich1581012929831_text\";s:0:\"\";s:24:\"flrich1581024487803_text\";s:0:\"\";s:24:\"flrich1581024557979_text\";s:0:\"\";s:24:\"flrich1581024997950_text\";s:0:\"\";}}}'),(409,121,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:56:\".fl-page-header{display: none;}\r\n.fl-menu {body: white;}\";s:2:\"js\";s:0:\"\";}'),(410,122,'_fl_builder_data','a:14:{s:13:\"5e3c5cf57ebf0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebf0\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"10\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5cf57ebf5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebf5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c5cf57ebf0\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c5cf57ebf9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebf9\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5cf57ebf5\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:33.329999999999998;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ebfe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebfe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5cf57ebf5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:33.329999999999998;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ec03\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec03\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5cf57ebf5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:33.329999999999998;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ec0c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec0c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418413\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:12:\"fas fa-phone\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:58:\"<p><span style=\"color: #9b9b9b;\">1-800-275-0002</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:6:\"7f7f7f\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"5\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec10\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec10\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418440\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:15:\"far fa-envelope\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:61:\"<p><span style=\"color: #9b9b9b;\">hi@loremipsum.com</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"3\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec2b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec2b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418413\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:12:\"fas fa-phone\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:58:\"<p><span style=\"color: #9b9b9b;\">1-800-275-0002</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:6:\"7f7f7f\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"5\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec2f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418440\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"icon\";s:15:\"far fa-envelope\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:61:\"<p><span style=\"color: #9b9b9b;\">hi@loremipsum.com</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"3\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5e5444d74\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5e5444d74\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c5cf57ebfe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:4:\"text\";s:168:\"<p style=\"text-align: center;\">Contact: info@gwendowment.org</p>\n<p style=\"text-align: center;\">P. O. Box 2356,</p>\n<p style=\"text-align: center;\">Detroit, MI 48202</p>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1581014614400_text\";s:0:\"\";s:24:\"flrich1581014648762_text\";s:0:\"\";s:24:\"flrich1581014688246_text\";s:0:\"\";s:24:\"flrich1581025605769_text\";s:0:\"\";}}s:13:\"5e3c89131488a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c89131488a\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c89131f110\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c89131f110\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c89131488a\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c89131f47b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c89131f47b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c89131f110\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c891313afd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c891313afd\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c89131f47b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(411,122,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:31:\".fl-page-header{display: none;}\";s:2:\"js\";s:0:\"\";}'),(412,123,'_fl_builder_data','a:6:{s:13:\"5e330b418d386\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b418d386\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":125:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1114\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b4191075\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4191075\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e330b418d386\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e330b4194d65\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4194d65\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e330b4191075\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"59.68\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b666b520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b666b520\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e330b4194d65\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:4:\"text\";s:1479:\"<h2>Education – The Birthright of Every Child</h2>\nEvery boy and girl born under heaven, of whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.\n\nThe very best schools understand that enabling this wonderful process—or this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.\n\nGeorge Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.\n\nWe are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.”\n\nFaithfully,\nT. Robinson Ahlstrom - Chairman\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580403560441_text\";s:0:\"\";s:24:\"flrich1580403643677_text\";s:0:\"\";s:24:\"flrich1580403672359_text\";s:0:\"\";s:24:\"flrich1580404810052_text\";s:0:\"\";s:24:\"flrich1580405135309_text\";s:0:\"\";s:24:\"flrich1580405328584_text\";s:0:\"\";s:24:\"flrich1580406445376_text\";s:0:\"\";s:24:\"flrich1580406501486_text\";s:0:\"\";s:24:\"flrich1580406777884_text\";s:0:\"\";s:24:\"flrich1581026176694_text\";s:0:\"\";s:24:\"flrich1581026343922_text\";s:0:\"\";s:24:\"flrich1581026426115_text\";s:0:\"\";s:24:\"flrich1581026583916_text\";s:0:\"\";}}s:13:\"5e3c8c4faefdc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c8c4faefdc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e330b4191075\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"40.32\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c8c63e0f80\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c8c63e0f80\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c8c4faefdc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"83\";s:9:\"photo_src\";s:67:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:83;s:5:\"title\";s:2:\"tr\";s:8:\"filename\";s:6:\"tr.png\";s:3:\"url\";s:67:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\";s:4:\"link\";s:62:\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/tr/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:2:\"tr\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:56;s:4:\"date\";d:1580405109000;s:8:\"modified\";d:1580405109000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"January 30, 2020\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"fbbee19730\";s:6:\"delete\";s:10:\"96dcb410f9\";s:4:\"edit\";s:10:\"3428da949b\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=83&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=56&action=edit\";s:15:\"uploadedToTitle\";s:24:\"A Word from the Chairman\";s:15:\"filesizeInBytes\";i:363364;s:21:\"filesizeHumanReadable\";s:6:\"355 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:325;s:5:\"width\";i:434;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:75:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:225;s:5:\"width\";i:300;s:3:\"url\";s:75:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr-300x225.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:67:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\";s:6:\"height\";i:325;s:5:\"width\";i:434;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}}'),(413,123,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(414,124,'_fl_builder_data','a:11:{s:13:\"5e330b418d386\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b418d386\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":125:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1114\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b4191075\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4191075\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e330b418d386\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e330b4194d65\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4194d65\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e330b4191075\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b666b520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b666b520\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e330b4194d65\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":49:{s:4:\"text\";s:1934:\"<h2>Education – The Birthright of Every Child</h2>\n\n<hr />\n\n<span style=\"color: #808080; font-size: 18px;\">Every boy and girl born under heaven, <img class=\"size-full wp-image-83 alignright\" src=\"http://gwendowment.org/wordpress1/wordpress1/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" /> whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">The very best schools understand that enabling this wonderful process—or this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.” </span>\n\n<span style=\"font-size: 18px; color: #808080;\">Faithfully,\nT. Robinson Ahlstrom - Chairman</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580403560441_text\";s:0:\"\";s:24:\"flrich1580403643677_text\";s:0:\"\";s:24:\"flrich1580403672359_text\";s:0:\"\";s:24:\"flrich1580404810052_text\";s:0:\"\";s:24:\"flrich1580405135309_text\";s:0:\"\";s:24:\"flrich1580405328584_text\";s:0:\"\";s:24:\"flrich1580406445376_text\";s:0:\"\";s:24:\"flrich1580406501486_text\";s:0:\"\";s:24:\"flrich1580406777884_text\";s:0:\"\";s:24:\"flrich1581026176694_text\";s:0:\"\";s:24:\"flrich1581026343922_text\";s:0:\"\";s:24:\"flrich1581026426115_text\";s:0:\"\";s:24:\"flrich1581026583916_text\";s:0:\"\";s:24:\"flrich1581026792428_text\";s:0:\"\";s:24:\"flrich1581027065631_text\";s:0:\"\";s:24:\"flrich1581027126736_text\";s:0:\"\";s:24:\"flrich1581027239411_text\";s:0:\"\";s:24:\"flrich1581028280748_text\";s:0:\"\";s:24:\"flrich1581029071269_text\";s:0:\"\";}}s:13:\"5e3c90b5d1e4c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d1e4c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"F5F2FD\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c90b5d98d8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d98d8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d1e4c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c90b5d9c57\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d9c57\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c90b5d98d8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c919a5c069\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c919a5c069\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:4:\"text\";s:152:\"<h4>\"Give children in need a chance at the very best education through GW Scholars Fund and help them become the people that God meant them to be.\"</h4>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1581027740534_text\";s:0:\"\";}}s:13:\"5e3c93e26e819\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26e819\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c93e26eb00\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26eb00\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c93e26e819\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c941c545de\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c941c545de\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c93e26eb00\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":97:{s:5:\"title\";s:10:\"Donate Now\";s:9:\"title_tag\";s:2:\"h3\";s:4:\"text\";s:130:\"<span style=\"font-size: 16px; color: #ffffff;\">Because a great education full of wonder and awe is the birthright of all. </span>\";s:6:\"layout\";s:6:\"inline\";s:8:\"bg_color\";s:6:\"4b5887\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:9:\"alignment\";s:6:\"center\";s:11:\"title_color\";s:0:\"\";s:16:\"title_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:23:\"title_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:27:\"title_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:22:\"text_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:26:\"text_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"btn_text\";s:0:\"\";s:8:\"btn_link\";s:0:\"\";s:15:\"btn_link_target\";s:5:\"_self\";s:17:\"btn_link_nofollow\";s:2:\"no\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:21:\"btn_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"btn_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"btn_button_transition\";s:7:\"disable\";s:17:\"btn_border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:21:\"btn_border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:6:\"donate\";s:16:\"wrap_padding_top\";s:1:\"0\";s:17:\"wrap_padding_unit\";s:2:\"px\";s:23:\"wrap_padding_top_medium\";s:0:\"\";s:24:\"wrap_padding_medium_unit\";s:2:\"px\";s:27:\"wrap_padding_top_responsive\";s:0:\"\";s:28:\"wrap_padding_responsive_unit\";s:2:\"px\";s:18:\"wrap_padding_right\";s:1:\"0\";s:25:\"wrap_padding_right_medium\";s:0:\"\";s:29:\"wrap_padding_right_responsive\";s:0:\"\";s:19:\"wrap_padding_bottom\";s:1:\"0\";s:26:\"wrap_padding_bottom_medium\";s:0:\"\";s:30:\"wrap_padding_bottom_responsive\";s:0:\"\";s:17:\"wrap_padding_left\";s:1:\"0\";s:24:\"wrap_padding_left_medium\";s:0:\"\";s:28:\"wrap_padding_left_responsive\";s:0:\"\";s:22:\"btn_padding_top_medium\";s:0:\"\";s:26:\"btn_padding_top_responsive\";s:0:\"\";s:24:\"btn_padding_right_medium\";s:0:\"\";s:28:\"btn_padding_right_responsive\";s:0:\"\";s:25:\"btn_padding_bottom_medium\";s:0:\"\";s:29:\"btn_padding_bottom_responsive\";s:0:\"\";s:23:\"btn_padding_left_medium\";s:0:\"\";s:27:\"btn_padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:3:\"cta\";s:11:\"connections\";a:12:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"title_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:8:\"btn_text\";s:0:\"\";s:8:\"btn_link\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:22:\"btn_border_hover_color\";s:0:\"\";}s:15:\"btn_link-search\";s:0:\"\";s:24:\"flrich1581028382968_text\";s:0:\"\";s:25:\"as_values_btn_link-search\";s:0:\"\";s:24:\"flrich1581028740781_text\";s:0:\"\";s:24:\"flrich1581028867231_text\";s:0:\"\";s:24:\"flrich1581029256280_text\";s:0:\"\";s:24:\"flrich1581029501115_text\";s:0:\"\";s:24:\"flrich1581029719309_text\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_padding_top\";s:0:\"\";s:18:\"btn_padding_bottom\";s:0:\"\";s:16:\"btn_padding_left\";s:0:\"\";s:17:\"btn_padding_right\";s:0:\"\";s:14:\"btn_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:10:\"btn_border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:22:\"btn_border_hover_color\";s:0:\"\";}}}'),(415,124,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:28:\".donate h3 {color: white;}\r\n\";s:2:\"js\";s:0:\"\";}'),(416,125,'_fl_builder_data','a:11:{s:13:\"5e330b418d386\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b418d386\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":125:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1114\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b4191075\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4191075\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e330b418d386\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e330b4194d65\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4194d65\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e330b4191075\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b666b520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b666b520\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e330b4194d65\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":52:{s:4:\"text\";s:1913:\"<h2>Education – The Birthright of Every Child</h2>\n\n<hr />\n\n<img class=\"size-full wp-image-83 alignright\" src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" />\n\n<span style=\"color: #808080; font-size: 18px;\">Every boy and girl born under heaven, whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">The very best schools understand that enabling this wonderful process—or this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.” </span>\n\n<span style=\"font-size: 18px; color: #808080;\">Faithfully,\nT. Robinson Ahlstrom - Chairman</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580403560441_text\";s:0:\"\";s:24:\"flrich1580403643677_text\";s:0:\"\";s:24:\"flrich1580403672359_text\";s:0:\"\";s:24:\"flrich1580404810052_text\";s:0:\"\";s:24:\"flrich1580405135309_text\";s:0:\"\";s:24:\"flrich1580405328584_text\";s:0:\"\";s:24:\"flrich1580406445376_text\";s:0:\"\";s:24:\"flrich1580406501486_text\";s:0:\"\";s:24:\"flrich1580406777884_text\";s:0:\"\";s:24:\"flrich1581026176694_text\";s:0:\"\";s:24:\"flrich1581026343922_text\";s:0:\"\";s:24:\"flrich1581026426115_text\";s:0:\"\";s:24:\"flrich1581026583916_text\";s:0:\"\";s:24:\"flrich1581026792428_text\";s:0:\"\";s:24:\"flrich1581027065631_text\";s:0:\"\";s:24:\"flrich1581027126736_text\";s:0:\"\";s:24:\"flrich1581027239411_text\";s:0:\"\";s:24:\"flrich1581028280748_text\";s:0:\"\";s:24:\"flrich1581029071269_text\";s:0:\"\";s:24:\"flrich1581030577877_text\";s:0:\"\";s:24:\"flrich1581030622674_text\";s:0:\"\";s:24:\"flrich1581030759972_text\";s:0:\"\";}}s:13:\"5e3c90b5d1e4c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d1e4c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"F5F2FD\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c90b5d98d8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d98d8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d1e4c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c90b5d9c57\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d9c57\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c90b5d98d8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c919a5c069\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c919a5c069\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:4:\"text\";s:152:\"<h4>\"Give children in need a chance at the very best education through GW Scholars Fund and help them become the people that God meant them to be.\"</h4>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1581027740534_text\";s:0:\"\";}}s:13:\"5e3c93e26e819\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26e819\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c93e26eb00\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26eb00\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c93e26e819\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c941c545de\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c941c545de\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c93e26eb00\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":98:{s:5:\"title\";s:10:\"Donate Now\";s:9:\"title_tag\";s:2:\"h3\";s:4:\"text\";s:130:\"<span style=\"font-size: 16px; color: #ffffff;\">Because a great education full of wonder and awe is the birthright of all. </span>\";s:6:\"layout\";s:6:\"inline\";s:8:\"bg_color\";s:6:\"4b5887\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:9:\"alignment\";s:6:\"center\";s:11:\"title_color\";s:0:\"\";s:16:\"title_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:23:\"title_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:27:\"title_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:22:\"text_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:26:\"text_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"btn_text\";s:6:\"Donate\";s:8:\"btn_link\";s:52:\"http://gwendowment.org/wordpress1/investment-impact/\";s:15:\"btn_link_target\";s:5:\"_self\";s:17:\"btn_link_nofollow\";s:2:\"no\";s:8:\"btn_icon\";s:20:\"fas fa-user-graduate\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:21:\"btn_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"btn_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"btn_button_transition\";s:7:\"disable\";s:17:\"btn_border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:21:\"btn_border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:6:\"donate\";s:16:\"wrap_padding_top\";s:1:\"0\";s:17:\"wrap_padding_unit\";s:2:\"px\";s:23:\"wrap_padding_top_medium\";s:0:\"\";s:24:\"wrap_padding_medium_unit\";s:2:\"px\";s:27:\"wrap_padding_top_responsive\";s:0:\"\";s:28:\"wrap_padding_responsive_unit\";s:2:\"px\";s:18:\"wrap_padding_right\";s:1:\"0\";s:25:\"wrap_padding_right_medium\";s:0:\"\";s:29:\"wrap_padding_right_responsive\";s:0:\"\";s:19:\"wrap_padding_bottom\";s:1:\"0\";s:26:\"wrap_padding_bottom_medium\";s:0:\"\";s:30:\"wrap_padding_bottom_responsive\";s:0:\"\";s:17:\"wrap_padding_left\";s:1:\"0\";s:24:\"wrap_padding_left_medium\";s:0:\"\";s:28:\"wrap_padding_left_responsive\";s:0:\"\";s:22:\"btn_padding_top_medium\";s:0:\"\";s:26:\"btn_padding_top_responsive\";s:0:\"\";s:24:\"btn_padding_right_medium\";s:0:\"\";s:28:\"btn_padding_right_responsive\";s:0:\"\";s:25:\"btn_padding_bottom_medium\";s:0:\"\";s:29:\"btn_padding_bottom_responsive\";s:0:\"\";s:23:\"btn_padding_left_medium\";s:0:\"\";s:27:\"btn_padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:3:\"cta\";s:11:\"connections\";a:12:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"title_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:8:\"btn_text\";s:0:\"\";s:8:\"btn_link\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:22:\"btn_border_hover_color\";s:0:\"\";}s:15:\"btn_link-search\";s:0:\"\";s:24:\"flrich1581028382968_text\";s:0:\"\";s:25:\"as_values_btn_link-search\";s:0:\"\";s:24:\"flrich1581028740781_text\";s:0:\"\";s:24:\"flrich1581028867231_text\";s:0:\"\";s:24:\"flrich1581029256280_text\";s:0:\"\";s:24:\"flrich1581029501115_text\";s:0:\"\";s:24:\"flrich1581029719309_text\";s:0:\"\";s:24:\"flrich1581029992142_text\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_padding_top\";s:0:\"\";s:18:\"btn_padding_bottom\";s:0:\"\";s:16:\"btn_padding_left\";s:0:\"\";s:17:\"btn_padding_right\";s:2:\"31\";s:14:\"btn_typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:10:\"btn_border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:22:\"btn_border_hover_color\";s:0:\"\";}}}'),(417,125,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:28:\".donate h3 {color: white;}\r\n\";s:2:\"js\";s:0:\"\";}'),(418,126,'_fl_builder_data','a:20:{s:13:\"5de5718ea8831\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ea8831\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":128:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-24\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5de5718eac520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eac520\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718ea8831\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5de5718eb0210\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eb0210\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de5718eac520\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5dea7c07219ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7c07219ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:75:\"<p style=\"text-align: center;\">The George Washington Scholars Endowment</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";}}s:13:\"5dea7dfcc2857\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc2857\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5dea7dfcc6546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc6546\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea7dfcc2857\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea7e01db280\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7e01db280\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea7dfcc6546\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:39:\"<p style=\"text-align: center;\">1785</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-35\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";}}s:13:\"5dea8828c95a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828c95a6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1888\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5dea8828d8962\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828d8962\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dea8828dc650\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828dc650\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"43.56\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8828e033f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828e033f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"56.44\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8ee6cc2e8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8ee6cc2e8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828dc650\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:3:\"url\";s:8:\"link_url\";s:44:\"http://gwendowment.org/wordpress1/home-page/\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"6f678394e7\";s:6:\"delete\";s:10:\"ce71e00c87\";s:4:\"edit\";s:10:\"26c43ff098\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5dea94777eb4e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea94777eb4e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828e033f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:13:\"medium-mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"4b5887\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5deab0904ca37\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0904ca37\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5deab09050726\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab09050726\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5deab0904ca37\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5deab0a26b5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0a26b5a5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5deab09050726\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:3:\"-20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:3:\"-20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}s:13:\"5debd510de5ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd510de5ba\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"17\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debd510f1663\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd510f1663\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debd510de5ba\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debd51101111\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd51101111\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debd510f1663\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debd532ae0f0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd532ae0f0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debd51101111\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:3:\"-20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:3:\"-20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(419,126,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(420,127,'_fl_builder_data','a:17:{s:13:\"5e3c4e59c908e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c908e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c4e59c9099\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c9099\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c908e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90a0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c9099\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"cccccc\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"10\";s:9:\"top_right\";s:2:\"10\";s:11:\"bottom_left\";s:2:\"10\";s:12:\"bottom_right\";s:2:\"10\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90a9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:12:\"Find out how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:59:\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c4e59c90ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90ad\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c90ad\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:3:\"100\";s:15:\"size_responsive\";s:3:\"100\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"1\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90b2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":66:{s:4:\"text\";s:235:\"<div style=\"background-color: white; border-radius: 20px;\">\n<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 45px;\">Discover and develop the genius of kids who are living in poverty.</span></p>\n\n</div>\";s:5:\"color\";s:6:\"231d00\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:12:\"Marcellus SC\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"-1\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";s:24:\"flrich1581011019155_text\";s:0:\"\";s:24:\"flrich1581011050367_text\";s:0:\"\";s:24:\"flrich1581013921071_text\";s:0:\"\";s:24:\"flrich1581013971763_text\";s:0:\"\";s:24:\"flrich1581024806923_text\";s:0:\"\";s:24:\"flrich1581024846716_text\";s:0:\"\";s:24:\"flrich1581024987925_text\";s:0:\"\";s:24:\"flrich1581025004526_text\";s:0:\"\";s:24:\"flrich1581031573330_text\";s:0:\"\";s:24:\"flrich1581031699580_text\";s:0:\"\";s:24:\"flrich1581031805420_text\";s:0:\"\";s:24:\"flrich1581031918231_text\";s:0:\"\";s:24:\"flrich1581033525614_text\";s:0:\"\";s:24:\"flrich1581033650175_text\";s:0:\"\";s:24:\"flrich1581033842313_text\";s:0:\"\";s:24:\"flrich1581033948047_text\";s:0:\"\";s:24:\"flrich1581034131482_text\";s:0:\"\";s:24:\"flrich1581034160102_text\";s:0:\"\";s:24:\"flrich1581034416371_text\";s:0:\"\";}}s:13:\"5e3c509278f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c509278f9f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:3:\"150\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5092894d9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5092894d9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c50928988a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c50928988a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"35.65\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c51e8b9546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c51e8b9546\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c50928988a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"cccccc\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b286c8c576\";s:6:\"delete\";s:10:\"5134a89e91\";s:4:\"edit\";s:10:\"99ffdd8e1c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e3c523ae1fcb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c523ae1fcb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"64.35\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c525fdd3b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c525fdd3b2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c523ae1fcb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:0:\"\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5e3c54857e283\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e283\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c54857e636\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e636\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c54857e283\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-40\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c54857e08a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e08a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c54857e636\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"39\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}s:13:\"5e3c84c5c88e7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c84c5c88e7\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":61:{s:4:\"text\";s:128:\"<div style=\"background-color: #4b5887; border-radius: 20px;\">\n<p>The George Washington Scholars Endowment</p>\n<p>1785</p>\n</div>\";s:5:\"color\";s:6:\"efefef\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";s:24:\"flrich1581008407534_text\";s:0:\"\";s:24:\"flrich1581008461545_text\";s:0:\"\";s:24:\"flrich1581008620399_text\";s:0:\"\";s:24:\"flrich1581008644626_text\";s:0:\"\";s:24:\"flrich1581010771548_text\";s:0:\"\";s:24:\"flrich1581010994739_text\";s:0:\"\";s:24:\"flrich1581012929831_text\";s:0:\"\";s:24:\"flrich1581024487803_text\";s:0:\"\";s:24:\"flrich1581024557979_text\";s:0:\"\";s:24:\"flrich1581024997950_text\";s:0:\"\";}}}'),(421,127,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:56:\".fl-page-header{display: none;}\r\n.fl-menu {body: white;}\";s:2:\"js\";s:0:\"\";}'),(422,128,'_fl_builder_data','a:17:{s:13:\"5e2f4f67e75f4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4f67e75f4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f511b06c80\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:110:\"<p style=\"text-align: center;\"><span style=\"font-size: 20px;\"><strong>Quality and Equality</strong></span></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580158827865_text\";s:0:\"\";s:24:\"flrich1580158841537_text\";s:0:\"\";s:24:\"flrich1580158853877_text\";s:0:\"\";s:24:\"flrich1580158871631_text\";s:0:\"\";s:24:\"flrich1580159663646_text\";s:0:\"\";s:24:\"flrich1580159747810_text\";s:0:\"\";s:24:\"flrich1580160118241_text\";s:0:\"\";s:24:\"flrich1580160137872_text\";s:0:\"\";s:24:\"flrich1580161406075_text\";s:0:\"\";}}s:13:\"5e2f4faf046bf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf046bf\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f4faf0c09e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf0c09e\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f4faf046bf\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f4faf0fd8d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf0fd8d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f4faf0c09e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"31.33\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f4faf13a7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf13a7c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f4faf0c09e\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"68.67\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f5119e8481\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5119e8481\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"700\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:3:\"400\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f511af34e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f511af34e2\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5119e8481\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f511b06c80\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f511b06c80\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f511af34e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f514e42475\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f514e42475\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f4faf0fd8d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"24\";s:9:\"photo_src\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"6\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:24;s:5:\"title\";s:14:\"Rockwell-Large\";s:8:\"filename\";s:18:\"Rockwell-Large.jpg\";s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:4:\"link\";s:49:\"http://gwendowment.org/wordpress1/rockwell-large/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:14:\"rockwell-large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316978000;s:8:\"modified\";d:1575316978000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"dbe669bf38\";s:6:\"delete\";s:10:\"0adddb2edd\";s:4:\"edit\";s:10:\"d6b1e86603\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=24&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1502959;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1481;s:5:\"width\";i:2400;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:185;s:5:\"width\";i:300;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-300x185.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:632;s:5:\"width\";i:1024;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-1024x632.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:6:\"height\";i:1481;s:5:\"width\";i:2400;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f51fa41c2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f51fa41c2f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f4faf13a7c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:4:\"text\";s:2299:\"Across the United States, too many K-12 schools are failing too many students. Two out of three eighth-graders can’t read proficiently. Two out of three score below proficient in math. Seventy-five percent of students are not proficient in civics. Nearly three out of four 12th-grade students cannot write proficiently. More than one million American students drop out of school every year and only one in four who do graduate from high school are ready for college in the four core subjects of English, reading, math and science.\n\nAmerican students now rank 25th in math, 17th in science and 14th in reading compared to students in 27 industrialized countries. Still more troubling is that fact that a longitudinal study of PISA results indicates that America’s high school students are continuing to fall further and further behind.\n\nAnd, in America’s K-12 schools, quality is not the only issue. Equality has proven to be an equally elusive goal. According to a 2009 Civil Rights Project report published by the Regents of the University of California, “Fifty-five years after the Brown decision, blacks and Latinos in American schools are more segregated than they have been in four decades.” The results are devastating. For African-American and Hispanic students across the country, dropout rates are close to 40 percent, compared to the national average of 27 percent. Only 4 percent of African American students and 11 percent of Hispanic students who do finish high school are ready for college in their core subjects.\n\nIn fact, access to quality education is a global challenge. It is the next great civil right. In the area of education, many of the 2015 Millennial Development Goals set by the United Nations were not met—especially in Sub-Saharan Africa. According to a UNESCO report published at the September 8th (2014) Conference on Literacy and Sustainable Development, “Poor quality education is leaving a legacy of illiteracy more widespread than previously believed: one in four young people—175 million adolescents—is unable to read a single sentence.\n\nThe Endowment exists solely to “provide direct aid to worthy scholars.” Whether here in the United States or abroad, its mission is to redeem what Thomas Jefferson called, “genius buried in poverty.”\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580159486313_text\";s:0:\"\";s:24:\"flrich1580159514030_text\";s:0:\"\";s:24:\"flrich1580159541781_text\";s:0:\"\";}}s:13:\"5e2f5351d9773\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351d9773\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":125:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"698\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f5351ec820\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351ec820\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5351d9773\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f5351f050f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351f050f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f5351ec820\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"47.45\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"89\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e2f5351f41fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351f41fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f5351ec820\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:52.549999999999997;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f536e002a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f536e002a6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f5351f41fe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"22\";s:9:\"photo_src\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:22;s:5:\"title\";s:15:\"Robert_Hutchins\";s:8:\"filename\";s:19:\"Robert_Hutchins.jpg\";s:3:\"url\";s:80:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins.jpg\";s:4:\"link\";s:50:\"http://gwendowment.org/wordpress1/robert_hutchins/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"robert_hutchins\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316950000;s:8:\"modified\";d:1575316950000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b854b98f40\";s:6:\"delete\";s:10:\"d31aa3792a\";s:4:\"edit\";s:10:\"3ca4787f1f\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=22&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:19878;s:21:\"filesizeHumanReadable\";s:5:\"19 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:412;s:5:\"width\";i:518;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:239;s:5:\"width\";i:300;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:80:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins.jpg\";s:6:\"height\";i:412;s:5:\"width\";i:518;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f53d2d35d8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f53d2d35d8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f5351f050f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":32:{s:4:\"text\";s:217:\"<table>\n<tbody>\n<tr>\n<td valign=\"right\"><strong>“The Education that is best for the best is the education that is best for all.” </strong>\n\n<strong>— Robert Maynard Hutchins</strong></td>\n</tr>\n</tbody>\n</table>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580159958920_text\";s:0:\"\";s:24:\"flrich1580160044732_text\";s:0:\"\";}}s:13:\"5e2f54ac612a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f54ac612a6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f511b06c80\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(423,128,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(424,129,'_fl_builder_data','a:17:{s:13:\"5e3c4e59c908e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c908e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":127:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c4e59c9099\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c9099\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c908e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90a0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c9099\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"cccccc\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"10\";s:9:\"top_right\";s:2:\"10\";s:11:\"bottom_left\";s:2:\"10\";s:12:\"bottom_right\";s:2:\"10\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90a9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":69:{s:4:\"text\";s:12:\"Find out how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:59:\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c4e59c90ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90ad\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c90ad\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:3:\"100\";s:15:\"size_responsive\";s:3:\"100\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"1\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90b2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":66:{s:4:\"text\";s:235:\"<div style=\"background-color: white; border-radius: 20px;\">\n<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 45px;\">Discover and develop the genius of kids who are living in poverty.</span></p>\n\n</div>\";s:5:\"color\";s:6:\"231d00\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:12:\"Marcellus SC\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"-1\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";s:24:\"flrich1581011019155_text\";s:0:\"\";s:24:\"flrich1581011050367_text\";s:0:\"\";s:24:\"flrich1581013921071_text\";s:0:\"\";s:24:\"flrich1581013971763_text\";s:0:\"\";s:24:\"flrich1581024806923_text\";s:0:\"\";s:24:\"flrich1581024846716_text\";s:0:\"\";s:24:\"flrich1581024987925_text\";s:0:\"\";s:24:\"flrich1581025004526_text\";s:0:\"\";s:24:\"flrich1581031573330_text\";s:0:\"\";s:24:\"flrich1581031699580_text\";s:0:\"\";s:24:\"flrich1581031805420_text\";s:0:\"\";s:24:\"flrich1581031918231_text\";s:0:\"\";s:24:\"flrich1581033525614_text\";s:0:\"\";s:24:\"flrich1581033650175_text\";s:0:\"\";s:24:\"flrich1581033842313_text\";s:0:\"\";s:24:\"flrich1581033948047_text\";s:0:\"\";s:24:\"flrich1581034131482_text\";s:0:\"\";s:24:\"flrich1581034160102_text\";s:0:\"\";s:24:\"flrich1581034416371_text\";s:0:\"\";}}s:13:\"5e3c509278f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c509278f9f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:3:\"150\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5092894d9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5092894d9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c50928988a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c50928988a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"37.01\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c51e8b9546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c51e8b9546\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c50928988a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"cccccc\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b286c8c576\";s:6:\"delete\";s:10:\"5134a89e91\";s:4:\"edit\";s:10:\"99ffdd8e1c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e3c523ae1fcb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c523ae1fcb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"62.99\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c525fdd3b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c525fdd3b2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c523ae1fcb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":65:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:12:\"mobile_title\";s:4:\"Menu\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5e3c54857e283\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e283\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c54857e636\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e636\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c54857e283\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-40\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c54857e08a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e08a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c54857e636\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"39\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}s:13:\"5e3c84c5c88e7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c84c5c88e7\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":61:{s:4:\"text\";s:128:\"<div style=\"background-color: #4b5887; border-radius: 20px;\">\n<p>The George Washington Scholars Endowment</p>\n<p>1785</p>\n</div>\";s:5:\"color\";s:6:\"efefef\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";s:24:\"flrich1581008407534_text\";s:0:\"\";s:24:\"flrich1581008461545_text\";s:0:\"\";s:24:\"flrich1581008620399_text\";s:0:\"\";s:24:\"flrich1581008644626_text\";s:0:\"\";s:24:\"flrich1581010771548_text\";s:0:\"\";s:24:\"flrich1581010994739_text\";s:0:\"\";s:24:\"flrich1581012929831_text\";s:0:\"\";s:24:\"flrich1581024487803_text\";s:0:\"\";s:24:\"flrich1581024557979_text\";s:0:\"\";s:24:\"flrich1581024997950_text\";s:0:\"\";}}}'),(425,129,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:56:\".fl-page-header{display: none;}\r\n.fl-menu {body: white;}\";s:2:\"js\";s:0:\"\";}'),(426,130,'_fl_builder_data','a:28:{s:13:\"5defa442b79ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442b79ad\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-56\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa442e54dc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e54dc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa442b79ad\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa442e91cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e91cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"73.03\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa4487c019\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa4487c019\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"26.97\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa46682ac2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa46682ac2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa442e91cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:4:\"text\";s:1080:\"Replenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”\n\nBecause the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:\n<ul>\n <li>Unusual Assets (such as a vehicle, work of art, or real estate),</li>\n <li>Wills or Trust Bequests,</li>\n <li>Charitable Gift Annuities,</li>\n <li>IRA Rollover Gifts,</li>\n <li>Appreciated Securities,</li>\n <li>The Gift of Life Insurance, and</li>\n <li>A Charitable Remainder Trust.</li>\n</ul>\nContributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986280828_text\";s:0:\"\";s:24:\"flrich1580160915873_text\";s:0:\"\";s:24:\"flrich1580160994089_text\";s:0:\"\";s:24:\"flrich1580161344480_text\";s:0:\"\";}}s:13:\"5defa49e863ae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa49e863ae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa4487c019\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"14\";s:9:\"photo_src\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-25\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:14;s:5:\"title\";s:33:\"Browne_Henriette_-_A_Girl_Writing\";s:8:\"filename\";s:37:\"Browne_Henriette_-_A_Girl_Writing.jpg\";s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:4:\"link\";s:68:\"http://gwendowment.org/wordpress1/browne_henriette_-_a_girl_writing/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:33:\"browne_henriette_-_a_girl_writing\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316922000;s:8:\"modified\";d:1575316922000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"96bea54890\";s:6:\"delete\";s:10:\"d5ce4da35f\";s:4:\"edit\";s:10:\"02f85b8b37\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=14&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1164538;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:235;s:5:\"width\";i:300;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-300x235.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:803;s:5:\"width\";i:1024;s:3:\"url\";s:107:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-1024x803.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa61638f40\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa61638f40\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa647847cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:4:\"text\";s:581:\"<table>\n<tbody>\n<tr>\n<td align=\"center\"><form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><a href=\"https://www.paypal.com/donate/?token=pio1_s4_ClNIjZWHy8mP_VNrXBuwLTWzMPKh9GGOBuUp8rEEyVJeW0RVsEap0PZNoiR_pm&country.x=US&locale.x=US\"><input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\" /> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></a></form></td>\n</tr>\n</tbody>\n</table>\n \";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986713891_text\";s:0:\"\";s:24:\"flrich1575986794868_text\";s:0:\"\";s:24:\"flrich1575986998857_text\";s:0:\"\";s:24:\"flrich1581035202272_text\";s:0:\"\";}}s:13:\"5defa6476da2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6476da2f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"280\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa64780adc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa64780adc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6476da2f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa647847cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa647847cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa64780adc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa68337135\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68337135\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:4;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"670\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6834ded1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6834ded1\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa68337135\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa68351bc0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68351bc0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6834ded1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-50\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa692aebae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa692aebae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa68351bc0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:4:\"text\";s:290:\"<p style=\"text-align: center;\"><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i>\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986837297_text\";s:0:\"\";s:24:\"flrich1575986864207_text\";s:0:\"\";s:24:\"flrich1575987018674_text\";s:0:\"\";s:24:\"flrich1580161859153_text\";s:0:\"\";}}s:13:\"5defa6c87a58b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c87a58b\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:5;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:3:\"890\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6c88d635\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c88d635\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6c87a58b\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa6c891324\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c891324\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:36.850000000000001;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa6c895012\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c895012\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"63.15\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"60\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa6db0420a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6db0420a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c891324\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"15\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:15;s:5:\"title\";s:9:\"Eli_Broad\";s:8:\"filename\";s:13:\"Eli_Broad.jpg\";s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:4:\"link\";s:44:\"http://gwendowment.org/wordpress1/eli_broad/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:9:\"eli_broad\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316931000;s:8:\"modified\";d:1575316931000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"97e2e11f96\";s:6:\"delete\";s:10:\"bb92a16204\";s:4:\"edit\";s:10:\"3db9e3add6\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=15&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:9338;s:21:\"filesizeHumanReadable\";s:4:\"9 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:202;s:5:\"width\";i:300;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa704c89ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa704c89ba\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c895012\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:4:\"text\";s:216:\"<strong>“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.”</strong>\n\n<strong>- Eli Broad</strong>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986951424_text\";s:0:\"\";s:24:\"flrich1575987255360_text\";s:0:\"\";s:24:\"flrich1580161890254_text\";s:0:\"\";s:24:\"flrich1580161913017_text\";s:0:\"\";}}s:13:\"5e2f5808dc420\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5808dc420\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"718\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f580a09fdd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a09fdd\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5808dc420\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f580a0dccc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a0dccc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f580a09fdd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f58221b035\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f58221b035\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f580a0dccc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:111:\"<p style=\"text-align: left;\"><span style=\"font-size: 20px;\"><strong>Investment & Impact</strong></span></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:2:\"20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580161062185_text\";s:0:\"\";s:24:\"flrich1580161098815_text\";s:0:\"\";s:24:\"flrich1580161168623_text\";s:0:\"\";s:24:\"flrich1580161293055_text\";s:0:\"\";s:24:\"flrich1580161327619_text\";s:0:\"\";s:24:\"flrich1580161425665_text\";s:0:\"\";s:24:\"flrich1580161503018_text\";s:0:\"\";}}s:13:\"5e2f58a473b8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f58a473b8b\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":126:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:3:\"550\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f58a495ff5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f58a495ff5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f58a473b8b\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f58a499ce4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f58a499ce4\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f58a495ff5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f58a46fe9c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f58a46fe9c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f58a499ce4\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(427,130,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(428,56,'_fl_builder_history_position','0'),(430,2,'_wp_trash_meta_status','publish'),(431,2,'_wp_trash_meta_time','1581094932'),(432,2,'_wp_desired_post_slug','sample-page'),(433,132,'_fl_builder_data','a:11:{s:13:\"5e330b418d386\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b418d386\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1114\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b4191075\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4191075\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e330b418d386\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e330b4194d65\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4194d65\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e330b4191075\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b666b520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b666b520\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e330b4194d65\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:4:\"text\";s:1913:\"<h2>Education – The Birthright of Every Child</h2>\n\n<hr />\n\n<img class=\"size-full wp-image-83 alignright\" src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" />\n\n<span style=\"color: #808080; font-size: 18px;\">Every boy and girl born under heaven, whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">The very best schools understand that enabling this wonderful process—or this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.” </span>\n\n<span style=\"font-size: 18px; color: #808080;\">Faithfully,\nT. Robinson Ahlstrom - Chairman</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580403560441_text\";s:0:\"\";s:24:\"flrich1580403643677_text\";s:0:\"\";s:24:\"flrich1580403672359_text\";s:0:\"\";s:24:\"flrich1580404810052_text\";s:0:\"\";s:24:\"flrich1580405135309_text\";s:0:\"\";s:24:\"flrich1580405328584_text\";s:0:\"\";s:24:\"flrich1580406445376_text\";s:0:\"\";s:24:\"flrich1580406501486_text\";s:0:\"\";s:24:\"flrich1580406777884_text\";s:0:\"\";s:24:\"flrich1581026176694_text\";s:0:\"\";s:24:\"flrich1581026343922_text\";s:0:\"\";s:24:\"flrich1581026426115_text\";s:0:\"\";s:24:\"flrich1581026583916_text\";s:0:\"\";s:24:\"flrich1581026792428_text\";s:0:\"\";s:24:\"flrich1581027065631_text\";s:0:\"\";s:24:\"flrich1581027126736_text\";s:0:\"\";s:24:\"flrich1581027239411_text\";s:0:\"\";s:24:\"flrich1581028280748_text\";s:0:\"\";s:24:\"flrich1581029071269_text\";s:0:\"\";s:24:\"flrich1581030577877_text\";s:0:\"\";s:24:\"flrich1581030622674_text\";s:0:\"\";s:24:\"flrich1581030759972_text\";s:0:\"\";}}s:13:\"5e3c90b5d1e4c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d1e4c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"F5F2FD\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c90b5d98d8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d98d8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d1e4c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c90b5d9c57\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d9c57\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c90b5d98d8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c919a5c069\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c919a5c069\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:4:\"text\";s:152:\"<h4>\"Give children in need a chance at the very best education through GW Scholars Fund and help them become the people that God meant them to be.\"</h4>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1581027740534_text\";s:0:\"\";}}s:13:\"5e3c93e26e819\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26e819\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c93e26eb00\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26eb00\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c93e26e819\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c941c545de\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c941c545de\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c93e26eb00\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":102:{s:5:\"title\";s:10:\"Donate Now\";s:9:\"title_tag\";s:2:\"h3\";s:4:\"text\";s:130:\"<span style=\"font-size: 16px; color: #ffffff;\">Because a great education full of wonder and awe is the birthright of all. </span>\";s:6:\"layout\";s:6:\"inline\";s:8:\"bg_color\";s:6:\"4b5887\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:9:\"alignment\";s:6:\"center\";s:11:\"title_color\";s:0:\"\";s:16:\"title_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:23:\"title_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:27:\"title_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:22:\"text_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:26:\"text_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"btn_text\";s:6:\"Donate\";s:8:\"btn_link\";s:52:\"http://gwendowment.org/wordpress1/investment-impact/\";s:15:\"btn_link_target\";s:5:\"_self\";s:17:\"btn_link_nofollow\";s:2:\"no\";s:8:\"btn_icon\";s:20:\"fas fa-user-graduate\";s:14:\"btn_duo_color1\";s:0:\"\";s:14:\"btn_duo_color2\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:21:\"btn_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"btn_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"btn_button_transition\";s:7:\"disable\";s:17:\"btn_border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:21:\"btn_border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:6:\"donate\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:16:\"wrap_padding_top\";s:1:\"0\";s:17:\"wrap_padding_unit\";s:2:\"px\";s:23:\"wrap_padding_top_medium\";s:0:\"\";s:24:\"wrap_padding_medium_unit\";s:2:\"px\";s:27:\"wrap_padding_top_responsive\";s:0:\"\";s:28:\"wrap_padding_responsive_unit\";s:2:\"px\";s:18:\"wrap_padding_right\";s:1:\"0\";s:25:\"wrap_padding_right_medium\";s:0:\"\";s:29:\"wrap_padding_right_responsive\";s:0:\"\";s:19:\"wrap_padding_bottom\";s:1:\"0\";s:26:\"wrap_padding_bottom_medium\";s:0:\"\";s:30:\"wrap_padding_bottom_responsive\";s:0:\"\";s:17:\"wrap_padding_left\";s:1:\"0\";s:24:\"wrap_padding_left_medium\";s:0:\"\";s:28:\"wrap_padding_left_responsive\";s:0:\"\";s:22:\"btn_padding_top_medium\";s:0:\"\";s:26:\"btn_padding_top_responsive\";s:0:\"\";s:24:\"btn_padding_right_medium\";s:0:\"\";s:28:\"btn_padding_right_responsive\";s:0:\"\";s:25:\"btn_padding_bottom_medium\";s:0:\"\";s:29:\"btn_padding_bottom_responsive\";s:0:\"\";s:23:\"btn_padding_left_medium\";s:0:\"\";s:27:\"btn_padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:3:\"cta\";s:11:\"connections\";a:12:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"title_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:8:\"btn_text\";s:0:\"\";s:8:\"btn_link\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:22:\"btn_border_hover_color\";s:0:\"\";}s:15:\"btn_link-search\";s:0:\"\";s:24:\"flrich1581028382968_text\";s:0:\"\";s:25:\"as_values_btn_link-search\";s:0:\"\";s:24:\"flrich1581028740781_text\";s:0:\"\";s:24:\"flrich1581028867231_text\";s:0:\"\";s:24:\"flrich1581029256280_text\";s:0:\"\";s:24:\"flrich1581029501115_text\";s:0:\"\";s:24:\"flrich1581029719309_text\";s:0:\"\";s:24:\"flrich1581029992142_text\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_padding_top\";s:0:\"\";s:18:\"btn_padding_bottom\";s:0:\"\";s:16:\"btn_padding_left\";s:0:\"\";s:17:\"btn_padding_right\";s:2:\"31\";s:14:\"btn_typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:10:\"btn_border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:22:\"btn_border_hover_color\";s:0:\"\";}}}'),(434,132,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:28:\".donate h3 {color: white;}\r\n\";s:2:\"js\";s:0:\"\";}'); INSERT INTO `wp_postmeta` VALUES (435,133,'_fl_builder_data','a:11:{s:13:\"5e330b418d386\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b418d386\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1114\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b4191075\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4191075\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e330b418d386\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e330b4194d65\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4194d65\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e330b4191075\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b666b520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b666b520\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e330b4194d65\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:4:\"text\";s:1913:\"<h2>Education – The Birthright of Every Child</h2>\n\n<hr />\n\n<img class=\"size-full wp-image-83 alignright\" src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" />\n\n<span style=\"color: #808080; font-size: 18px;\">Every boy and girl born under heaven, whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">The very best schools understand that enabling this wonderful process—or this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.” </span>\n\n<span style=\"font-size: 18px; color: #808080;\">Faithfully,\nT. Robinson Ahlstrom - Chairman</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580403560441_text\";s:0:\"\";s:24:\"flrich1580403643677_text\";s:0:\"\";s:24:\"flrich1580403672359_text\";s:0:\"\";s:24:\"flrich1580404810052_text\";s:0:\"\";s:24:\"flrich1580405135309_text\";s:0:\"\";s:24:\"flrich1580405328584_text\";s:0:\"\";s:24:\"flrich1580406445376_text\";s:0:\"\";s:24:\"flrich1580406501486_text\";s:0:\"\";s:24:\"flrich1580406777884_text\";s:0:\"\";s:24:\"flrich1581026176694_text\";s:0:\"\";s:24:\"flrich1581026343922_text\";s:0:\"\";s:24:\"flrich1581026426115_text\";s:0:\"\";s:24:\"flrich1581026583916_text\";s:0:\"\";s:24:\"flrich1581026792428_text\";s:0:\"\";s:24:\"flrich1581027065631_text\";s:0:\"\";s:24:\"flrich1581027126736_text\";s:0:\"\";s:24:\"flrich1581027239411_text\";s:0:\"\";s:24:\"flrich1581028280748_text\";s:0:\"\";s:24:\"flrich1581029071269_text\";s:0:\"\";s:24:\"flrich1581030577877_text\";s:0:\"\";s:24:\"flrich1581030622674_text\";s:0:\"\";s:24:\"flrich1581030759972_text\";s:0:\"\";}}s:13:\"5e3c90b5d1e4c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d1e4c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"F5F2FD\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c90b5d98d8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d98d8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d1e4c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c90b5d9c57\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d9c57\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c90b5d98d8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c919a5c069\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c919a5c069\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:4:\"text\";s:152:\"<h4>\"Give children in need a chance at the very best education through GW Scholars Fund and help them become the people that God meant them to be.\"</h4>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1581027740534_text\";s:0:\"\";}}s:13:\"5e3c93e26e819\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26e819\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c93e26eb00\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26eb00\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c93e26e819\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c941c545de\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c941c545de\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c93e26eb00\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":102:{s:5:\"title\";s:10:\"Donate Now\";s:9:\"title_tag\";s:2:\"h3\";s:4:\"text\";s:130:\"<span style=\"font-size: 16px; color: #ffffff;\">Because a great education full of wonder and awe is the birthright of all. </span>\";s:6:\"layout\";s:6:\"inline\";s:8:\"bg_color\";s:6:\"4b5887\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:9:\"alignment\";s:6:\"center\";s:11:\"title_color\";s:0:\"\";s:16:\"title_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:23:\"title_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:27:\"title_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:22:\"text_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:26:\"text_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"btn_text\";s:6:\"Donate\";s:8:\"btn_link\";s:52:\"http://gwendowment.org/wordpress1/investment-impact/\";s:15:\"btn_link_target\";s:5:\"_self\";s:17:\"btn_link_nofollow\";s:2:\"no\";s:8:\"btn_icon\";s:20:\"fas fa-user-graduate\";s:14:\"btn_duo_color1\";s:0:\"\";s:14:\"btn_duo_color2\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:21:\"btn_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"btn_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"btn_button_transition\";s:7:\"disable\";s:17:\"btn_border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:21:\"btn_border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:6:\"donate\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:16:\"wrap_padding_top\";s:1:\"0\";s:17:\"wrap_padding_unit\";s:2:\"px\";s:23:\"wrap_padding_top_medium\";s:0:\"\";s:24:\"wrap_padding_medium_unit\";s:2:\"px\";s:27:\"wrap_padding_top_responsive\";s:0:\"\";s:28:\"wrap_padding_responsive_unit\";s:2:\"px\";s:18:\"wrap_padding_right\";s:1:\"0\";s:25:\"wrap_padding_right_medium\";s:0:\"\";s:29:\"wrap_padding_right_responsive\";s:0:\"\";s:19:\"wrap_padding_bottom\";s:1:\"0\";s:26:\"wrap_padding_bottom_medium\";s:0:\"\";s:30:\"wrap_padding_bottom_responsive\";s:0:\"\";s:17:\"wrap_padding_left\";s:1:\"0\";s:24:\"wrap_padding_left_medium\";s:0:\"\";s:28:\"wrap_padding_left_responsive\";s:0:\"\";s:22:\"btn_padding_top_medium\";s:0:\"\";s:26:\"btn_padding_top_responsive\";s:0:\"\";s:24:\"btn_padding_right_medium\";s:0:\"\";s:28:\"btn_padding_right_responsive\";s:0:\"\";s:25:\"btn_padding_bottom_medium\";s:0:\"\";s:29:\"btn_padding_bottom_responsive\";s:0:\"\";s:23:\"btn_padding_left_medium\";s:0:\"\";s:27:\"btn_padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:3:\"cta\";s:11:\"connections\";a:12:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"title_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:8:\"btn_text\";s:0:\"\";s:8:\"btn_link\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:22:\"btn_border_hover_color\";s:0:\"\";}s:15:\"btn_link-search\";s:0:\"\";s:24:\"flrich1581028382968_text\";s:0:\"\";s:25:\"as_values_btn_link-search\";s:0:\"\";s:24:\"flrich1581028740781_text\";s:0:\"\";s:24:\"flrich1581028867231_text\";s:0:\"\";s:24:\"flrich1581029256280_text\";s:0:\"\";s:24:\"flrich1581029501115_text\";s:0:\"\";s:24:\"flrich1581029719309_text\";s:0:\"\";s:24:\"flrich1581029992142_text\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_padding_top\";s:0:\"\";s:18:\"btn_padding_bottom\";s:0:\"\";s:16:\"btn_padding_left\";s:0:\"\";s:17:\"btn_padding_right\";s:2:\"31\";s:14:\"btn_typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:10:\"btn_border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:22:\"btn_border_hover_color\";s:0:\"\";}}}'),(436,133,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:28:\".donate h3 {color: white;}\r\n\";s:2:\"js\";s:0:\"\";}'),(443,134,'_fl_builder_data','a:11:{s:13:\"5e330b418d386\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b418d386\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1114\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b4191075\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4191075\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e330b418d386\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e330b4194d65\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4194d65\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e330b4191075\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b666b520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b666b520\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e330b4194d65\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:4:\"text\";s:1913:\"<h2>Education – The Birthright of Every Child</h2>\n\n<hr />\n\n<img class=\"size-full wp-image-83 alignright\" src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" />\n\n<span style=\"color: #808080; font-size: 18px;\">Every boy and girl born under heaven, whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">The very best schools understand that enabling this wonderful process—or this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.” </span>\n\n<span style=\"font-size: 18px; color: #808080;\">Faithfully,\nT. Robinson Ahlstrom - Chairman</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580403560441_text\";s:0:\"\";s:24:\"flrich1580403643677_text\";s:0:\"\";s:24:\"flrich1580403672359_text\";s:0:\"\";s:24:\"flrich1580404810052_text\";s:0:\"\";s:24:\"flrich1580405135309_text\";s:0:\"\";s:24:\"flrich1580405328584_text\";s:0:\"\";s:24:\"flrich1580406445376_text\";s:0:\"\";s:24:\"flrich1580406501486_text\";s:0:\"\";s:24:\"flrich1580406777884_text\";s:0:\"\";s:24:\"flrich1581026176694_text\";s:0:\"\";s:24:\"flrich1581026343922_text\";s:0:\"\";s:24:\"flrich1581026426115_text\";s:0:\"\";s:24:\"flrich1581026583916_text\";s:0:\"\";s:24:\"flrich1581026792428_text\";s:0:\"\";s:24:\"flrich1581027065631_text\";s:0:\"\";s:24:\"flrich1581027126736_text\";s:0:\"\";s:24:\"flrich1581027239411_text\";s:0:\"\";s:24:\"flrich1581028280748_text\";s:0:\"\";s:24:\"flrich1581029071269_text\";s:0:\"\";s:24:\"flrich1581030577877_text\";s:0:\"\";s:24:\"flrich1581030622674_text\";s:0:\"\";s:24:\"flrich1581030759972_text\";s:0:\"\";}}s:13:\"5e3c90b5d1e4c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d1e4c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"F5F2FD\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:1:\"2\";s:9:\"top_right\";s:1:\"2\";s:11:\"bottom_left\";s:1:\"2\";s:12:\"bottom_right\";s:1:\"2\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c90b5d98d8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d98d8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d1e4c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c90b5d9c57\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d9c57\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c90b5d98d8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c919a5c069\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c919a5c069\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:4:\"text\";s:152:\"<h4>\"Give children in need a chance at the very best education through GW Scholars Fund and help them become the people that God meant them to be.\"</h4>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1581027740534_text\";s:0:\"\";}}s:13:\"5e3c93e26e819\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26e819\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c93e26eb00\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26eb00\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c93e26e819\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c941c545de\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c941c545de\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c93e26eb00\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":103:{s:5:\"title\";s:10:\"Donate Now\";s:9:\"title_tag\";s:2:\"h3\";s:4:\"text\";s:130:\"<span style=\"font-size: 16px; color: #ffffff;\">Because a great education full of wonder and awe is the birthright of all. </span>\";s:6:\"layout\";s:6:\"inline\";s:8:\"bg_color\";s:6:\"4b5887\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:9:\"alignment\";s:6:\"center\";s:11:\"title_color\";s:0:\"\";s:16:\"title_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:23:\"title_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:27:\"title_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:22:\"text_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:26:\"text_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"btn_text\";s:6:\"Donate\";s:8:\"btn_link\";s:52:\"http://gwendowment.org/wordpress1/investment-impact/\";s:15:\"btn_link_target\";s:5:\"_self\";s:17:\"btn_link_nofollow\";s:2:\"no\";s:8:\"btn_icon\";s:20:\"fas fa-user-graduate\";s:14:\"btn_duo_color1\";s:0:\"\";s:14:\"btn_duo_color2\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:21:\"btn_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"btn_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"btn_button_transition\";s:7:\"disable\";s:17:\"btn_border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:21:\"btn_border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:6:\"donate\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:16:\"wrap_padding_top\";s:2:\"19\";s:17:\"wrap_padding_unit\";s:2:\"px\";s:23:\"wrap_padding_top_medium\";s:0:\"\";s:24:\"wrap_padding_medium_unit\";s:2:\"px\";s:27:\"wrap_padding_top_responsive\";s:0:\"\";s:28:\"wrap_padding_responsive_unit\";s:2:\"px\";s:18:\"wrap_padding_right\";s:2:\"19\";s:25:\"wrap_padding_right_medium\";s:0:\"\";s:29:\"wrap_padding_right_responsive\";s:0:\"\";s:19:\"wrap_padding_bottom\";s:2:\"19\";s:26:\"wrap_padding_bottom_medium\";s:0:\"\";s:30:\"wrap_padding_bottom_responsive\";s:0:\"\";s:17:\"wrap_padding_left\";s:2:\"19\";s:24:\"wrap_padding_left_medium\";s:0:\"\";s:28:\"wrap_padding_left_responsive\";s:0:\"\";s:22:\"btn_padding_top_medium\";s:0:\"\";s:26:\"btn_padding_top_responsive\";s:0:\"\";s:24:\"btn_padding_right_medium\";s:0:\"\";s:28:\"btn_padding_right_responsive\";s:0:\"\";s:25:\"btn_padding_bottom_medium\";s:0:\"\";s:29:\"btn_padding_bottom_responsive\";s:0:\"\";s:23:\"btn_padding_left_medium\";s:0:\"\";s:27:\"btn_padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:3:\"cta\";s:11:\"connections\";a:12:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"title_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:8:\"btn_text\";s:0:\"\";s:8:\"btn_link\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:22:\"btn_border_hover_color\";s:0:\"\";}s:15:\"btn_link-search\";s:0:\"\";s:24:\"flrich1581028382968_text\";s:0:\"\";s:25:\"as_values_btn_link-search\";s:0:\"\";s:24:\"flrich1581028740781_text\";s:0:\"\";s:24:\"flrich1581028867231_text\";s:0:\"\";s:24:\"flrich1581029256280_text\";s:0:\"\";s:24:\"flrich1581029501115_text\";s:0:\"\";s:24:\"flrich1581029719309_text\";s:0:\"\";s:24:\"flrich1581029992142_text\";s:0:\"\";s:24:\"flrich1581095090626_text\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_padding_top\";s:0:\"\";s:18:\"btn_padding_bottom\";s:0:\"\";s:16:\"btn_padding_left\";s:0:\"\";s:17:\"btn_padding_right\";s:0:\"\";s:14:\"btn_typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:10:\"btn_border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:22:\"btn_border_hover_color\";s:0:\"\";}}}'),(444,134,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:28:\".donate h3 {color: white;}\r\n\";s:2:\"js\";s:0:\"\";}'),(445,37,'_fl_builder_history_position','3'),(447,46,'_fl_builder_history_position','2'),(568,135,'_fl_builder_data','a:24:{s:13:\"5defa442b79ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442b79ad\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa442e54dc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e54dc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa442b79ad\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa442e91cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e91cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"73.03\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa4487c019\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa4487c019\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"26.97\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa46682ac2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa46682ac2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa442e91cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:1688:\"<h2 style=\"text-align: left;\">Investment & Impact</h2>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">Replenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”</span>\n\n<span style=\"font-size: 16px; color: #808080;\">Because the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:</span>\n<ul>\n <li><span style=\"font-size: 16px; color: #808080;\">Unusual Assets (such as a vehicle, work of art, or real estate),</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Wills or Trust Bequests,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Charitable Gift Annuities,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">IRA Rollover Gifts,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Appreciated Securities,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">The Gift of Life Insurance, and</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">A Charitable Remainder Trust.</span></li>\n</ul>\n<span style=\"font-size: 16px; color: #808080;\">Contributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986280828_text\";s:0:\"\";s:24:\"flrich1580160915873_text\";s:0:\"\";s:24:\"flrich1580160994089_text\";s:0:\"\";s:24:\"flrich1580161344480_text\";s:0:\"\";s:24:\"flrich1581095498524_text\";s:0:\"\";s:24:\"flrich1581095786968_text\";s:0:\"\";s:24:\"flrich1581096033906_text\";s:0:\"\";s:24:\"flrich1581096127044_text\";s:0:\"\";s:24:\"flrich1581096139577_text\";s:0:\"\";}}s:13:\"5defa49e863ae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa49e863ae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa4487c019\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"14\";s:9:\"photo_src\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"78\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:14;s:5:\"title\";s:33:\"Browne_Henriette_-_A_Girl_Writing\";s:8:\"filename\";s:37:\"Browne_Henriette_-_A_Girl_Writing.jpg\";s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:4:\"link\";s:68:\"http://gwendowment.org/wordpress1/browne_henriette_-_a_girl_writing/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:33:\"browne_henriette_-_a_girl_writing\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316922000;s:8:\"modified\";d:1575316922000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"cbfdbac09b\";s:6:\"delete\";s:10:\"f6d9112811\";s:4:\"edit\";s:10:\"0c52ac4872\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=14&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1164538;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:235;s:5:\"width\";i:300;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-300x235.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:803;s:5:\"width\";i:1024;s:3:\"url\";s:107:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-1024x803.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa61638f40\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa61638f40\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa647847cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:4:\"text\";s:581:\"<table>\n<tbody>\n<tr>\n<td align=\"center\"><form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><a href=\"https://www.paypal.com/donate/?token=pio1_s4_ClNIjZWHy8mP_VNrXBuwLTWzMPKh9GGOBuUp8rEEyVJeW0RVsEap0PZNoiR_pm&country.x=US&locale.x=US\"><input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\" /> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></a></form></td>\n</tr>\n</tbody>\n</table>\n \";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986713891_text\";s:0:\"\";s:24:\"flrich1575986794868_text\";s:0:\"\";s:24:\"flrich1575986998857_text\";s:0:\"\";s:24:\"flrich1581035202272_text\";s:0:\"\";}}s:13:\"5defa6476da2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6476da2f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"280\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa64780adc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa64780adc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6476da2f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa647847cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa647847cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa64780adc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa68337135\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68337135\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"670\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6834ded1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6834ded1\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa68337135\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa68351bc0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68351bc0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6834ded1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-50\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa692aebae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa692aebae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa68351bc0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:4:\"text\";s:290:\"<p style=\"text-align: center;\"><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i>\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986837297_text\";s:0:\"\";s:24:\"flrich1575986864207_text\";s:0:\"\";s:24:\"flrich1575987018674_text\";s:0:\"\";s:24:\"flrich1580161859153_text\";s:0:\"\";}}s:13:\"5defa6c87a58b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c87a58b\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:4;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:3:\"890\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6c88d635\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c88d635\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6c87a58b\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa6c891324\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c891324\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:36.850000000000001;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa6c895012\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c895012\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"63.15\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"60\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa6db0420a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6db0420a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c891324\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"15\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:15;s:5:\"title\";s:9:\"Eli_Broad\";s:8:\"filename\";s:13:\"Eli_Broad.jpg\";s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:4:\"link\";s:44:\"http://gwendowment.org/wordpress1/eli_broad/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:9:\"eli_broad\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316931000;s:8:\"modified\";d:1575316931000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"97e2e11f96\";s:6:\"delete\";s:10:\"bb92a16204\";s:4:\"edit\";s:10:\"3db9e3add6\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=15&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:9338;s:21:\"filesizeHumanReadable\";s:4:\"9 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:202;s:5:\"width\";i:300;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa704c89ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa704c89ba\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c895012\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:4:\"text\";s:216:\"<strong>“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.”</strong>\n\n<strong>- Eli Broad</strong>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986951424_text\";s:0:\"\";s:24:\"flrich1575987255360_text\";s:0:\"\";s:24:\"flrich1580161890254_text\";s:0:\"\";s:24:\"flrich1580161913017_text\";s:0:\"\";}}s:13:\"5e2f5808dc420\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5808dc420\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"946\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f580a09fdd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a09fdd\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5808dc420\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f580a0dccc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a0dccc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f580a09fdd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f58221b035\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f58221b035\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f580a0dccc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:4:\"text\";s:71:\"<h2 style=\"text-align: left;\"></h2>\n<h2 style=\"text-align: left;\"></h2>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:2:\"20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580161062185_text\";s:0:\"\";s:24:\"flrich1580161098815_text\";s:0:\"\";s:24:\"flrich1580161168623_text\";s:0:\"\";s:24:\"flrich1580161293055_text\";s:0:\"\";s:24:\"flrich1580161327619_text\";s:0:\"\";s:24:\"flrich1580161425665_text\";s:0:\"\";s:24:\"flrich1580161503018_text\";s:0:\"\";s:24:\"flrich1581095355305_text\";s:0:\"\";s:24:\"flrich1581095487519_text\";s:0:\"\";s:24:\"flrich1581095911342_text\";s:0:\"\";s:24:\"flrich1581096025954_text\";s:0:\"\";}}}'),(569,135,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(570,44,'_fl_builder_history_position','1'),(667,37,'_fl_builder_history_state_0','a:4:{s:5:\"label\";s:13:\"draft_created\";s:11:\"module_type\";N;s:5:\"nodes\";a:12:{s:13:\"5debc8362417e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362417e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:4:\"1690\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"20\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debc83627e6d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc83627e6d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc8362417e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc8362bb5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362bb5c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"61.2\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8362f84b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362f84b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"38.8\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8687dfc9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8687dfc9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362bb5c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":49:{s:4:\"text\";s:2302:\"<h2 class=\"spanH\">History & Mission</h2>\n<h4>\"GWSE is rooted in George Washington\'s original vision to provide quality education to all American children regardless of their means.\"</h4>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">The scene of George Washington resigning his commission in the Maryland State House is the stuff of legend, beautifully depicted in John Trumbull’s magnificent oil painting on display in the Rotunda of the U.S. Capitol. General Washington’s renunciation of privilege and power made him an 18th century Cincinnatus - a model of public virtue and a mythological figure in the establishment of the world’s first great democracy.</span>\n<span style=\"font-size: 16px; color: #808080;\">\nLess known, but no less remarkable, is the fact that soon after returning to his beloved Mount Vernon, General Washington penned a letter to Thomas Jefferson expressing his “inclination” to endow a school “for poor and orphaned children.” On the 17th of December, 1785, General Washington pledged £1,000 to create an Endowment “for the purpose of educating orphan children or the children of such poor and indigent persons as are unable to accomplish this by their own means.”</span>\n\n<span style=\"font-size: 16px; color: #808080;\">Throughout the remainder of his life, Washington personally administered the Endowment, demonstrating an affectionate interest in the students receiving his aid. After his death in December of 1799, the charitable trust was conveyed through his will to the Trustees of Alexandria Academy. By 1825—the year after Robert E. Lee’s graduation—they had unwisely spent the principal and the Academy closed. For another generation, Washington’s family continued to provide educational opportunity to the very poor but, without the Endowment, their charitable efforts could not be sustained.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">In 2017, citizens came together to reestablish the Endowment as a 501(c)3 charity. Now the challenge is to replenish the Endowment so that it can resume its historic work. In keeping with Washington’s Last Will & Testament, revenues from the Endowment will be used entirely to provide a fine classical education to needy children, both in this country and abroad.</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575733354680_text\";s:0:\"\";s:24:\"flrich1575733372655_text\";s:0:\"\";s:24:\"flrich1575734390347_text\";s:0:\"\";s:24:\"flrich1575734663353_text\";s:0:\"\";s:24:\"flrich1575734843323_text\";s:0:\"\";s:24:\"flrich1575735076149_text\";s:0:\"\";s:24:\"flrich1575735178532_text\";s:0:\"\";s:24:\"flrich1575735210414_text\";s:0:\"\";s:24:\"flrich1575735301946_text\";s:0:\"\";s:24:\"flrich1575735349151_text\";s:0:\"\";s:24:\"flrich1575735372333_text\";s:0:\"\";s:24:\"flrich1575735538187_text\";s:0:\"\";s:24:\"flrich1575735685523_text\";s:0:\"\";s:24:\"flrich1575735983845_text\";s:0:\"\";s:24:\"flrich1575736130990_text\";s:0:\"\";s:24:\"flrich1575736178951_text\";s:0:\"\";s:24:\"flrich1575736323832_text\";s:0:\"\";}}s:13:\"5debc98a34776\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc98a34776\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362f84b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"27\";s:9:\"photo_src\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"160\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:27;s:5:\"title\";s:27:\"Trumbull_GWashington_resign\";s:8:\"filename\";s:31:\"Trumbull_GWashington_resign.jpg\";s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:4:\"link\";s:62:\"http://gwendowment.org/wordpress1/trumbull_gwashington_resign/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:27:\"trumbull_gwashington_resign\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575317056000;s:8:\"modified\";d:1575317056000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"1a5c3dec82\";s:6:\"delete\";s:10:\"bd1d964306\";s:4:\"edit\";s:10:\"ccf0f12983\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=27&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:5138524;s:21:\"filesizeHumanReadable\";s:4:\"5 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:196;s:5:\"width\";i:300;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-300x196.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:670;s:5:\"width\";i:1024;s:3:\"url\";s:101:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-1024x670.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb243e7ef\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb243e7ef\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"960\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2449ebb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2449ebb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debcb243e7ef\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debcb244dbaa\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb244dbaa\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"35.38\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2451899\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2451899\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"64.62\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb4182993\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb4182993\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb244dbaa\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"16\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:16;s:5:\"title\";s:17:\"George_Washington\";s:8:\"filename\";s:21:\"George_Washington.jpg\";s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:4:\"link\";s:52:\"http://gwendowment.org/wordpress1/george_washington/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:17:\"george_washington\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316933000;s:8:\"modified\";d:1575316933000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"e678218ea7\";s:6:\"delete\";s:10:\"f896946808\";s:4:\"edit\";s:10:\"076cba88ec\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=16&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:8173;s:21:\"filesizeHumanReadable\";s:4:\"8 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:180;s:5:\"width\";i:300;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-300x180.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb76a606a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb76a606a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb2451899\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:4:\"text\";s:80:\"“Nothing is more important than the education of youth.” - George Washington\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"95\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575734136850_text\";s:0:\"\";s:24:\"flrich1575734424472_text\";s:0:\"\";}}}s:8:\"settings\";a:2:{s:6:\"global\";O:8:\"stdClass\":44:{s:20:\"show_default_heading\";s:1:\"0\";s:24:\"default_heading_selector\";s:15:\".fl-post-header\";s:11:\"row_margins\";s:1:\"0\";s:16:\"row_margins_unit\";s:2:\"px\";s:18:\"row_margins_medium\";s:0:\"\";s:23:\"row_margins_medium_unit\";s:2:\"px\";s:22:\"row_margins_responsive\";s:0:\"\";s:27:\"row_margins_responsive_unit\";s:2:\"px\";s:11:\"row_padding\";s:2:\"20\";s:16:\"row_padding_unit\";s:2:\"px\";s:18:\"row_padding_medium\";s:0:\"\";s:23:\"row_padding_medium_unit\";s:2:\"px\";s:22:\"row_padding_responsive\";s:0:\"\";s:27:\"row_padding_responsive_unit\";s:2:\"px\";s:9:\"row_width\";s:4:\"1100\";s:14:\"row_width_unit\";s:2:\"px\";s:17:\"row_width_default\";s:5:\"fixed\";s:25:\"row_content_width_default\";s:5:\"fixed\";s:14:\"column_margins\";s:0:\"\";s:19:\"column_margins_unit\";s:2:\"px\";s:21:\"column_margins_medium\";s:0:\"\";s:26:\"column_margins_medium_unit\";s:2:\"px\";s:25:\"column_margins_responsive\";s:0:\"\";s:30:\"column_margins_responsive_unit\";s:2:\"px\";s:14:\"column_padding\";s:0:\"\";s:19:\"column_padding_unit\";s:2:\"px\";s:21:\"column_padding_medium\";s:0:\"\";s:26:\"column_padding_medium_unit\";s:2:\"px\";s:25:\"column_padding_responsive\";s:0:\"\";s:30:\"column_padding_responsive_unit\";s:2:\"px\";s:14:\"module_margins\";s:2:\"20\";s:19:\"module_margins_unit\";s:2:\"px\";s:21:\"module_margins_medium\";s:0:\"\";s:26:\"module_margins_medium_unit\";s:2:\"px\";s:25:\"module_margins_responsive\";s:0:\"\";s:30:\"module_margins_responsive_unit\";s:2:\"px\";s:18:\"responsive_enabled\";s:1:\"1\";s:12:\"auto_spacing\";s:1:\"1\";s:17:\"medium_breakpoint\";s:3:\"992\";s:21:\"responsive_breakpoint\";s:3:\"768\";s:24:\"responsive_col_max_width\";s:1:\"1\";s:24:\"responsive_base_fontsize\";s:2:\"16\";s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}s:6:\"layout\";O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}}}'),(668,37,'_fl_builder_history_state_1','a:4:{s:5:\"label\";s:13:\"module_edited\";s:11:\"module_type\";s:9:\"rich-text\";s:5:\"nodes\";a:12:{s:13:\"5debc8362417e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362417e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:4:\"1690\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"20\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debc83627e6d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc83627e6d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc8362417e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc8362bb5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362bb5c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"61.2\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8362f84b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362f84b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"38.8\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8687dfc9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8687dfc9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362bb5c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":49:{s:4:\"text\";s:2302:\"<h2 class=\"spanH\">History & Mission</h2>\n<h4>\"GWSE is rooted in George Washington\'s original vision to provide quality education to all American children regardless of their means.\"</h4>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">The scene of George Washington resigning his commission in the Maryland State House is the stuff of legend, beautifully depicted in John Trumbull’s magnificent oil painting on display in the Rotunda of the U.S. Capitol. General Washington’s renunciation of privilege and power made him an 18th century Cincinnatus - a model of public virtue and a mythological figure in the establishment of the world’s first great democracy.</span>\n<span style=\"font-size: 16px; color: #808080;\">\nLess known, but no less remarkable, is the fact that soon after returning to his beloved Mount Vernon, General Washington penned a letter to Thomas Jefferson expressing his “inclination” to endow a school “for poor and orphaned children.” On the 17th of December, 1785, General Washington pledged £1,000 to create an Endowment “for the purpose of educating orphan children or the children of such poor and indigent persons as are unable to accomplish this by their own means.”</span>\n\n<span style=\"font-size: 16px; color: #808080;\">Throughout the remainder of his life, Washington personally administered the Endowment, demonstrating an affectionate interest in the students receiving his aid. After his death in December of 1799, the charitable trust was conveyed through his will to the Trustees of Alexandria Academy. By 1825—the year after Robert E. Lee’s graduation—they had unwisely spent the principal and the Academy closed. For another generation, Washington’s family continued to provide educational opportunity to the very poor but, without the Endowment, their charitable efforts could not be sustained.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">In 2017, citizens came together to reestablish the Endowment as a 501(c)3 charity. Now the challenge is to replenish the Endowment so that it can resume its historic work. In keeping with Washington’s Last Will & Testament, revenues from the Endowment will be used entirely to provide a fine classical education to needy children, both in this country and abroad.</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575733354680_text\";s:0:\"\";s:24:\"flrich1575733372655_text\";s:0:\"\";s:24:\"flrich1575734390347_text\";s:0:\"\";s:24:\"flrich1575734663353_text\";s:0:\"\";s:24:\"flrich1575734843323_text\";s:0:\"\";s:24:\"flrich1575735076149_text\";s:0:\"\";s:24:\"flrich1575735178532_text\";s:0:\"\";s:24:\"flrich1575735210414_text\";s:0:\"\";s:24:\"flrich1575735301946_text\";s:0:\"\";s:24:\"flrich1575735349151_text\";s:0:\"\";s:24:\"flrich1575735372333_text\";s:0:\"\";s:24:\"flrich1575735538187_text\";s:0:\"\";s:24:\"flrich1575735685523_text\";s:0:\"\";s:24:\"flrich1575735983845_text\";s:0:\"\";s:24:\"flrich1575736130990_text\";s:0:\"\";s:24:\"flrich1575736178951_text\";s:0:\"\";s:24:\"flrich1575736323832_text\";s:0:\"\";}}s:13:\"5debc98a34776\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc98a34776\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362f84b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"27\";s:9:\"photo_src\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"160\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:27;s:5:\"title\";s:27:\"Trumbull_GWashington_resign\";s:8:\"filename\";s:31:\"Trumbull_GWashington_resign.jpg\";s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:4:\"link\";s:62:\"http://gwendowment.org/wordpress1/trumbull_gwashington_resign/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:27:\"trumbull_gwashington_resign\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575317056000;s:8:\"modified\";d:1575317056000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"1a5c3dec82\";s:6:\"delete\";s:10:\"bd1d964306\";s:4:\"edit\";s:10:\"ccf0f12983\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=27&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:5138524;s:21:\"filesizeHumanReadable\";s:4:\"5 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:196;s:5:\"width\";i:300;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-300x196.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:670;s:5:\"width\";i:1024;s:3:\"url\";s:101:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-1024x670.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb243e7ef\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb243e7ef\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"960\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2449ebb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2449ebb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debcb243e7ef\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debcb244dbaa\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb244dbaa\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"35.38\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2451899\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2451899\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"64.62\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb4182993\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb4182993\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb244dbaa\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"16\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:16;s:5:\"title\";s:17:\"George_Washington\";s:8:\"filename\";s:21:\"George_Washington.jpg\";s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:4:\"link\";s:52:\"http://gwendowment.org/wordpress1/george_washington/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:17:\"george_washington\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316933000;s:8:\"modified\";d:1575316933000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"e678218ea7\";s:6:\"delete\";s:10:\"f896946808\";s:4:\"edit\";s:10:\"076cba88ec\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=16&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:8173;s:21:\"filesizeHumanReadable\";s:4:\"8 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:180;s:5:\"width\";i:300;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-300x180.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb76a606a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb76a606a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb2451899\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:4:\"text\";s:80:\"“Nothing is more important than the education of youth.” - George Washington\";s:5:\"color\";s:6:\"cccccc\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"95\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575734136850_text\";s:0:\"\";s:24:\"flrich1575734424472_text\";s:0:\"\";s:24:\"flrich1581096880743_text\";s:0:\"\";}}}s:8:\"settings\";a:2:{s:6:\"global\";O:8:\"stdClass\":44:{s:20:\"show_default_heading\";s:1:\"0\";s:24:\"default_heading_selector\";s:15:\".fl-post-header\";s:11:\"row_margins\";s:1:\"0\";s:16:\"row_margins_unit\";s:2:\"px\";s:18:\"row_margins_medium\";s:0:\"\";s:23:\"row_margins_medium_unit\";s:2:\"px\";s:22:\"row_margins_responsive\";s:0:\"\";s:27:\"row_margins_responsive_unit\";s:2:\"px\";s:11:\"row_padding\";s:2:\"20\";s:16:\"row_padding_unit\";s:2:\"px\";s:18:\"row_padding_medium\";s:0:\"\";s:23:\"row_padding_medium_unit\";s:2:\"px\";s:22:\"row_padding_responsive\";s:0:\"\";s:27:\"row_padding_responsive_unit\";s:2:\"px\";s:9:\"row_width\";s:4:\"1100\";s:14:\"row_width_unit\";s:2:\"px\";s:17:\"row_width_default\";s:5:\"fixed\";s:25:\"row_content_width_default\";s:5:\"fixed\";s:14:\"column_margins\";s:0:\"\";s:19:\"column_margins_unit\";s:2:\"px\";s:21:\"column_margins_medium\";s:0:\"\";s:26:\"column_margins_medium_unit\";s:2:\"px\";s:25:\"column_margins_responsive\";s:0:\"\";s:30:\"column_margins_responsive_unit\";s:2:\"px\";s:14:\"column_padding\";s:0:\"\";s:19:\"column_padding_unit\";s:2:\"px\";s:21:\"column_padding_medium\";s:0:\"\";s:26:\"column_padding_medium_unit\";s:2:\"px\";s:25:\"column_padding_responsive\";s:0:\"\";s:30:\"column_padding_responsive_unit\";s:2:\"px\";s:14:\"module_margins\";s:2:\"20\";s:19:\"module_margins_unit\";s:2:\"px\";s:21:\"module_margins_medium\";s:0:\"\";s:26:\"module_margins_medium_unit\";s:2:\"px\";s:25:\"module_margins_responsive\";s:0:\"\";s:30:\"module_margins_responsive_unit\";s:2:\"px\";s:18:\"responsive_enabled\";s:1:\"1\";s:12:\"auto_spacing\";s:1:\"1\";s:17:\"medium_breakpoint\";s:3:\"992\";s:21:\"responsive_breakpoint\";s:3:\"768\";s:24:\"responsive_col_max_width\";s:1:\"1\";s:24:\"responsive_base_fontsize\";s:2:\"16\";s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}s:6:\"layout\";O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}}}'),(669,37,'_fl_builder_history_state_2','a:4:{s:5:\"label\";s:13:\"module_edited\";s:11:\"module_type\";s:9:\"rich-text\";s:5:\"nodes\";a:12:{s:13:\"5debc8362417e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362417e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:4:\"1690\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"20\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debc83627e6d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc83627e6d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc8362417e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc8362bb5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362bb5c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"61.2\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8362f84b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362f84b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"38.8\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8687dfc9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8687dfc9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362bb5c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":49:{s:4:\"text\";s:2302:\"<h2 class=\"spanH\">History & Mission</h2>\n<h4>\"GWSE is rooted in George Washington\'s original vision to provide quality education to all American children regardless of their means.\"</h4>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">The scene of George Washington resigning his commission in the Maryland State House is the stuff of legend, beautifully depicted in John Trumbull’s magnificent oil painting on display in the Rotunda of the U.S. Capitol. General Washington’s renunciation of privilege and power made him an 18th century Cincinnatus - a model of public virtue and a mythological figure in the establishment of the world’s first great democracy.</span>\n<span style=\"font-size: 16px; color: #808080;\">\nLess known, but no less remarkable, is the fact that soon after returning to his beloved Mount Vernon, General Washington penned a letter to Thomas Jefferson expressing his “inclination” to endow a school “for poor and orphaned children.” On the 17th of December, 1785, General Washington pledged £1,000 to create an Endowment “for the purpose of educating orphan children or the children of such poor and indigent persons as are unable to accomplish this by their own means.”</span>\n\n<span style=\"font-size: 16px; color: #808080;\">Throughout the remainder of his life, Washington personally administered the Endowment, demonstrating an affectionate interest in the students receiving his aid. After his death in December of 1799, the charitable trust was conveyed through his will to the Trustees of Alexandria Academy. By 1825—the year after Robert E. Lee’s graduation—they had unwisely spent the principal and the Academy closed. For another generation, Washington’s family continued to provide educational opportunity to the very poor but, without the Endowment, their charitable efforts could not be sustained.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">In 2017, citizens came together to reestablish the Endowment as a 501(c)3 charity. Now the challenge is to replenish the Endowment so that it can resume its historic work. In keeping with Washington’s Last Will & Testament, revenues from the Endowment will be used entirely to provide a fine classical education to needy children, both in this country and abroad.</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575733354680_text\";s:0:\"\";s:24:\"flrich1575733372655_text\";s:0:\"\";s:24:\"flrich1575734390347_text\";s:0:\"\";s:24:\"flrich1575734663353_text\";s:0:\"\";s:24:\"flrich1575734843323_text\";s:0:\"\";s:24:\"flrich1575735076149_text\";s:0:\"\";s:24:\"flrich1575735178532_text\";s:0:\"\";s:24:\"flrich1575735210414_text\";s:0:\"\";s:24:\"flrich1575735301946_text\";s:0:\"\";s:24:\"flrich1575735349151_text\";s:0:\"\";s:24:\"flrich1575735372333_text\";s:0:\"\";s:24:\"flrich1575735538187_text\";s:0:\"\";s:24:\"flrich1575735685523_text\";s:0:\"\";s:24:\"flrich1575735983845_text\";s:0:\"\";s:24:\"flrich1575736130990_text\";s:0:\"\";s:24:\"flrich1575736178951_text\";s:0:\"\";s:24:\"flrich1575736323832_text\";s:0:\"\";}}s:13:\"5debc98a34776\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc98a34776\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362f84b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"27\";s:9:\"photo_src\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"160\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:27;s:5:\"title\";s:27:\"Trumbull_GWashington_resign\";s:8:\"filename\";s:31:\"Trumbull_GWashington_resign.jpg\";s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:4:\"link\";s:62:\"http://gwendowment.org/wordpress1/trumbull_gwashington_resign/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:27:\"trumbull_gwashington_resign\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575317056000;s:8:\"modified\";d:1575317056000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"1a5c3dec82\";s:6:\"delete\";s:10:\"bd1d964306\";s:4:\"edit\";s:10:\"ccf0f12983\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=27&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:5138524;s:21:\"filesizeHumanReadable\";s:4:\"5 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:196;s:5:\"width\";i:300;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-300x196.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:670;s:5:\"width\";i:1024;s:3:\"url\";s:101:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-1024x670.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb243e7ef\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb243e7ef\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"960\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2449ebb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2449ebb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debcb243e7ef\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debcb244dbaa\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb244dbaa\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"35.38\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2451899\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2451899\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"64.62\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb4182993\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb4182993\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb244dbaa\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"16\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:16;s:5:\"title\";s:17:\"George_Washington\";s:8:\"filename\";s:21:\"George_Washington.jpg\";s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:4:\"link\";s:52:\"http://gwendowment.org/wordpress1/george_washington/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:17:\"george_washington\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316933000;s:8:\"modified\";d:1575316933000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"e678218ea7\";s:6:\"delete\";s:10:\"f896946808\";s:4:\"edit\";s:10:\"076cba88ec\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=16&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:8173;s:21:\"filesizeHumanReadable\";s:4:\"8 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:180;s:5:\"width\";i:300;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-300x180.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb76a606a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb76a606a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb2451899\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:4:\"text\";s:134:\"<span style=\"font-size: 16px; color: #808080;“>Nothing is more important than the education of youth.” - George Washington </span>\";s:5:\"color\";s:6:\"cccccc\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"95\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575734136850_text\";s:0:\"\";s:24:\"flrich1575734424472_text\";s:0:\"\";s:24:\"flrich1581096880743_text\";s:0:\"\";s:24:\"flrich1581097187101_text\";s:0:\"\";}}}s:8:\"settings\";a:2:{s:6:\"global\";O:8:\"stdClass\":44:{s:20:\"show_default_heading\";s:1:\"0\";s:24:\"default_heading_selector\";s:15:\".fl-post-header\";s:11:\"row_margins\";s:1:\"0\";s:16:\"row_margins_unit\";s:2:\"px\";s:18:\"row_margins_medium\";s:0:\"\";s:23:\"row_margins_medium_unit\";s:2:\"px\";s:22:\"row_margins_responsive\";s:0:\"\";s:27:\"row_margins_responsive_unit\";s:2:\"px\";s:11:\"row_padding\";s:2:\"20\";s:16:\"row_padding_unit\";s:2:\"px\";s:18:\"row_padding_medium\";s:0:\"\";s:23:\"row_padding_medium_unit\";s:2:\"px\";s:22:\"row_padding_responsive\";s:0:\"\";s:27:\"row_padding_responsive_unit\";s:2:\"px\";s:9:\"row_width\";s:4:\"1100\";s:14:\"row_width_unit\";s:2:\"px\";s:17:\"row_width_default\";s:5:\"fixed\";s:25:\"row_content_width_default\";s:5:\"fixed\";s:14:\"column_margins\";s:0:\"\";s:19:\"column_margins_unit\";s:2:\"px\";s:21:\"column_margins_medium\";s:0:\"\";s:26:\"column_margins_medium_unit\";s:2:\"px\";s:25:\"column_margins_responsive\";s:0:\"\";s:30:\"column_margins_responsive_unit\";s:2:\"px\";s:14:\"column_padding\";s:0:\"\";s:19:\"column_padding_unit\";s:2:\"px\";s:21:\"column_padding_medium\";s:0:\"\";s:26:\"column_padding_medium_unit\";s:2:\"px\";s:25:\"column_padding_responsive\";s:0:\"\";s:30:\"column_padding_responsive_unit\";s:2:\"px\";s:14:\"module_margins\";s:2:\"20\";s:19:\"module_margins_unit\";s:2:\"px\";s:21:\"module_margins_medium\";s:0:\"\";s:26:\"module_margins_medium_unit\";s:2:\"px\";s:25:\"module_margins_responsive\";s:0:\"\";s:30:\"module_margins_responsive_unit\";s:2:\"px\";s:18:\"responsive_enabled\";s:1:\"1\";s:12:\"auto_spacing\";s:1:\"1\";s:17:\"medium_breakpoint\";s:3:\"992\";s:21:\"responsive_breakpoint\";s:3:\"768\";s:24:\"responsive_col_max_width\";s:1:\"1\";s:24:\"responsive_base_fontsize\";s:2:\"16\";s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}s:6:\"layout\";O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}}}'),(670,37,'_fl_builder_history_state_3','a:4:{s:5:\"label\";s:13:\"module_edited\";s:11:\"module_type\";s:9:\"rich-text\";s:5:\"nodes\";a:12:{s:13:\"5debc8362417e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362417e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:4:\"1690\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"20\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debc83627e6d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc83627e6d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc8362417e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc8362bb5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362bb5c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"61.2\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8362f84b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8362f84b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc83627e6d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:4:\"38.8\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc8687dfc9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc8687dfc9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362bb5c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":49:{s:4:\"text\";s:2302:\"<h2 class=\"spanH\">History & Mission</h2>\n<h4>\"GWSE is rooted in George Washington\'s original vision to provide quality education to all American children regardless of their means.\"</h4>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">The scene of George Washington resigning his commission in the Maryland State House is the stuff of legend, beautifully depicted in John Trumbull’s magnificent oil painting on display in the Rotunda of the U.S. Capitol. General Washington’s renunciation of privilege and power made him an 18th century Cincinnatus - a model of public virtue and a mythological figure in the establishment of the world’s first great democracy.</span>\n<span style=\"font-size: 16px; color: #808080;\">\nLess known, but no less remarkable, is the fact that soon after returning to his beloved Mount Vernon, General Washington penned a letter to Thomas Jefferson expressing his “inclination” to endow a school “for poor and orphaned children.” On the 17th of December, 1785, General Washington pledged £1,000 to create an Endowment “for the purpose of educating orphan children or the children of such poor and indigent persons as are unable to accomplish this by their own means.”</span>\n\n<span style=\"font-size: 16px; color: #808080;\">Throughout the remainder of his life, Washington personally administered the Endowment, demonstrating an affectionate interest in the students receiving his aid. After his death in December of 1799, the charitable trust was conveyed through his will to the Trustees of Alexandria Academy. By 1825—the year after Robert E. Lee’s graduation—they had unwisely spent the principal and the Academy closed. For another generation, Washington’s family continued to provide educational opportunity to the very poor but, without the Endowment, their charitable efforts could not be sustained.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">In 2017, citizens came together to reestablish the Endowment as a 501(c)3 charity. Now the challenge is to replenish the Endowment so that it can resume its historic work. In keeping with Washington’s Last Will & Testament, revenues from the Endowment will be used entirely to provide a fine classical education to needy children, both in this country and abroad.</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575733354680_text\";s:0:\"\";s:24:\"flrich1575733372655_text\";s:0:\"\";s:24:\"flrich1575734390347_text\";s:0:\"\";s:24:\"flrich1575734663353_text\";s:0:\"\";s:24:\"flrich1575734843323_text\";s:0:\"\";s:24:\"flrich1575735076149_text\";s:0:\"\";s:24:\"flrich1575735178532_text\";s:0:\"\";s:24:\"flrich1575735210414_text\";s:0:\"\";s:24:\"flrich1575735301946_text\";s:0:\"\";s:24:\"flrich1575735349151_text\";s:0:\"\";s:24:\"flrich1575735372333_text\";s:0:\"\";s:24:\"flrich1575735538187_text\";s:0:\"\";s:24:\"flrich1575735685523_text\";s:0:\"\";s:24:\"flrich1575735983845_text\";s:0:\"\";s:24:\"flrich1575736130990_text\";s:0:\"\";s:24:\"flrich1575736178951_text\";s:0:\"\";s:24:\"flrich1575736323832_text\";s:0:\"\";}}s:13:\"5debc98a34776\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc98a34776\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc8362f84b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"27\";s:9:\"photo_src\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"160\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:27;s:5:\"title\";s:27:\"Trumbull_GWashington_resign\";s:8:\"filename\";s:31:\"Trumbull_GWashington_resign.jpg\";s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:4:\"link\";s:62:\"http://gwendowment.org/wordpress1/trumbull_gwashington_resign/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:27:\"trumbull_gwashington_resign\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575317056000;s:8:\"modified\";d:1575317056000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"1a5c3dec82\";s:6:\"delete\";s:10:\"bd1d964306\";s:4:\"edit\";s:10:\"ccf0f12983\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=27&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:5138524;s:21:\"filesizeHumanReadable\";s:4:\"5 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:196;s:5:\"width\";i:300;s:3:\"url\";s:100:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-300x196.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:670;s:5:\"width\";i:1024;s:3:\"url\";s:101:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign-1024x670.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:92:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\";s:6:\"height\";i:1962;s:5:\"width\";i:3000;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb243e7ef\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb243e7ef\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"960\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2449ebb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2449ebb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debcb243e7ef\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debcb244dbaa\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb244dbaa\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"35.38\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb2451899\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb2451899\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debcb2449ebb\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"64.62\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debcb4182993\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb4182993\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb244dbaa\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"16\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:16;s:5:\"title\";s:17:\"George_Washington\";s:8:\"filename\";s:21:\"George_Washington.jpg\";s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:4:\"link\";s:52:\"http://gwendowment.org/wordpress1/george_washington/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:17:\"george_washington\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316933000;s:8:\"modified\";d:1575316933000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"e678218ea7\";s:6:\"delete\";s:10:\"f896946808\";s:4:\"edit\";s:10:\"076cba88ec\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=16&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:8173;s:21:\"filesizeHumanReadable\";s:4:\"8 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:180;s:5:\"width\";i:300;s:3:\"url\";s:90:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington-300x180.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\";s:6:\"height\";i:180;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debcb76a606a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debcb76a606a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debcb2451899\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:131:\"<span style=\"font-size: 14px; color: #808080;\">Nothing is more important than the education of youth.” - George Washington</span>\";s:5:\"color\";s:6:\"cccccc\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"95\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575734136850_text\";s:0:\"\";s:24:\"flrich1575734424472_text\";s:0:\"\";s:24:\"flrich1581096880743_text\";s:0:\"\";s:24:\"flrich1581097187101_text\";s:0:\"\";s:24:\"flrich1581097320086_text\";s:0:\"\";}}}s:8:\"settings\";a:2:{s:6:\"global\";O:8:\"stdClass\":44:{s:20:\"show_default_heading\";s:1:\"0\";s:24:\"default_heading_selector\";s:15:\".fl-post-header\";s:11:\"row_margins\";s:1:\"0\";s:16:\"row_margins_unit\";s:2:\"px\";s:18:\"row_margins_medium\";s:0:\"\";s:23:\"row_margins_medium_unit\";s:2:\"px\";s:22:\"row_margins_responsive\";s:0:\"\";s:27:\"row_margins_responsive_unit\";s:2:\"px\";s:11:\"row_padding\";s:2:\"20\";s:16:\"row_padding_unit\";s:2:\"px\";s:18:\"row_padding_medium\";s:0:\"\";s:23:\"row_padding_medium_unit\";s:2:\"px\";s:22:\"row_padding_responsive\";s:0:\"\";s:27:\"row_padding_responsive_unit\";s:2:\"px\";s:9:\"row_width\";s:4:\"1100\";s:14:\"row_width_unit\";s:2:\"px\";s:17:\"row_width_default\";s:5:\"fixed\";s:25:\"row_content_width_default\";s:5:\"fixed\";s:14:\"column_margins\";s:0:\"\";s:19:\"column_margins_unit\";s:2:\"px\";s:21:\"column_margins_medium\";s:0:\"\";s:26:\"column_margins_medium_unit\";s:2:\"px\";s:25:\"column_margins_responsive\";s:0:\"\";s:30:\"column_margins_responsive_unit\";s:2:\"px\";s:14:\"column_padding\";s:0:\"\";s:19:\"column_padding_unit\";s:2:\"px\";s:21:\"column_padding_medium\";s:0:\"\";s:26:\"column_padding_medium_unit\";s:2:\"px\";s:25:\"column_padding_responsive\";s:0:\"\";s:30:\"column_padding_responsive_unit\";s:2:\"px\";s:14:\"module_margins\";s:2:\"20\";s:19:\"module_margins_unit\";s:2:\"px\";s:21:\"module_margins_medium\";s:0:\"\";s:26:\"module_margins_medium_unit\";s:2:\"px\";s:25:\"module_margins_responsive\";s:0:\"\";s:30:\"module_margins_responsive_unit\";s:2:\"px\";s:18:\"responsive_enabled\";s:1:\"1\";s:12:\"auto_spacing\";s:1:\"1\";s:17:\"medium_breakpoint\";s:3:\"992\";s:21:\"responsive_breakpoint\";s:3:\"768\";s:24:\"responsive_col_max_width\";s:1:\"1\";s:24:\"responsive_base_fontsize\";s:2:\"16\";s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}s:6:\"layout\";O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}}}'),(671,136,'_fl_builder_data','a:12:{s:13:\"5e2f4faf046bf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf046bf\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f4faf0c09e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf0c09e\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f4faf046bf\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f4faf0fd8d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf0fd8d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f4faf0c09e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"31.33\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f4faf13a7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf13a7c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f4faf0c09e\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"68.67\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f514e42475\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f514e42475\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f4faf0fd8d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"24\";s:9:\"photo_src\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"83\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:24;s:5:\"title\";s:14:\"Rockwell-Large\";s:8:\"filename\";s:18:\"Rockwell-Large.jpg\";s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:4:\"link\";s:49:\"http://gwendowment.org/wordpress1/rockwell-large/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:14:\"rockwell-large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316978000;s:8:\"modified\";d:1575316978000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"482f126b6f\";s:6:\"delete\";s:10:\"36eaf4a3e8\";s:4:\"edit\";s:10:\"7ecb2a2d3c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=24&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1502959;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1481;s:5:\"width\";i:2400;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:185;s:5:\"width\";i:300;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-300x185.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:632;s:5:\"width\";i:1024;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-1024x632.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:6:\"height\";i:1481;s:5:\"width\";i:2400;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f51fa41c2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f51fa41c2f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f4faf13a7c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":38:{s:4:\"text\";s:2636:\"<h2 style=\"text-align: center;\">Quality and Equality</h2>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">Across the United States, too many K-12 schools are failing too many students. Two out of three eighth-graders can’t read proficiently. Two out of three score below proficient in math. Seventy-five percent of students are not proficient in civics. Nearly three out of four 12th-grade students cannot write proficiently. More than one million American students drop out of school every year and only one in four who do graduate from high school are ready for college in the four core subjects of English, reading, math and science.\n</span>\n<span style=\"font-size: 16px; color: #808080;\">American students now rank 25th in math, 17th in science and 14th in reading compared to students in 27 industrialized countries. Still more troubling is that fact that a longitudinal study of PISA results indicates that America’s high school students are continuing to fall further and further behind.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">And, in America’s K-12 schools, quality is not the only issue. Equality has proven to be an equally elusive goal. According to a 2009 Civil Rights Project report published by the Regents of the University of California, “Fifty-five years after the Brown decision, blacks and Latinos in American schools are more segregated than they have been in four decades.” The results are devastating. For African-American and Hispanic students across the country, dropout rates are close to 40 percent, compared to the national average of 27 percent. Only 4 percent of African American students and 11 percent of Hispanic students who do finish high school are ready for college in their core subjects.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">In fact, access to quality education is a global challenge. It is the next great civil right. In the area of education, many of the 2015 Millennial Development Goals set by the United Nations were not met—especially in Sub-Saharan Africa. According to a UNESCO report published at the September 8th (2014) Conference on Literacy and Sustainable Development, “Poor quality education is leaving a legacy of illiteracy more widespread than previously believed: one in four young people—175 million adolescents—is unable to read a single sentence.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">The Endowment exists solely to “provide direct aid to worthy scholars.” Whether here in the United States or abroad, its mission is to redeem what Thomas Jefferson called, “genius buried in poverty.”</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580159486313_text\";s:0:\"\";s:24:\"flrich1580159514030_text\";s:0:\"\";s:24:\"flrich1580159541781_text\";s:0:\"\";s:24:\"flrich1581096501123_text\";s:0:\"\";s:24:\"flrich1581096594369_text\";s:0:\"\";s:24:\"flrich1581096865553_text\";s:0:\"\";}}s:13:\"5e2f5351d9773\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351d9773\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"698\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f5351ec820\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351ec820\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5351d9773\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f5351f050f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351f050f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f5351ec820\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"47.45\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"56\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e2f5351f41fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351f41fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f5351ec820\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:52.549999999999997;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f536e002a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f536e002a6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f5351f41fe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"22\";s:9:\"photo_src\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:22;s:5:\"title\";s:15:\"Robert_Hutchins\";s:8:\"filename\";s:19:\"Robert_Hutchins.jpg\";s:3:\"url\";s:80:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins.jpg\";s:4:\"link\";s:50:\"http://gwendowment.org/wordpress1/robert_hutchins/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"robert_hutchins\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316950000;s:8:\"modified\";d:1575316950000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b854b98f40\";s:6:\"delete\";s:10:\"d31aa3792a\";s:4:\"edit\";s:10:\"3ca4787f1f\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=22&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:19878;s:21:\"filesizeHumanReadable\";s:5:\"19 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:412;s:5:\"width\";i:518;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:239;s:5:\"width\";i:300;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:80:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins.jpg\";s:6:\"height\";i:412;s:5:\"width\";i:518;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f53d2d35d8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f53d2d35d8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f5351f050f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:273:\" \n<table>\n<tbody>\n<tr>\n<td valign=\"right\"><span style=\"font-size: 16px;\">“The Education that is best for the best is the education that is best for all.” </span>\n\n<span style=\"font-size: 16px;\">— Robert Maynard Hutchins</span></td>\n</tr>\n</tbody>\n</table>\n \";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580159958920_text\";s:0:\"\";s:24:\"flrich1580160044732_text\";s:0:\"\";s:24:\"flrich1581096971992_text\";s:0:\"\";s:24:\"flrich1581096998497_text\";s:0:\"\";s:24:\"flrich1581097348706_text\";s:0:\"\";s:24:\"flrich1581097434321_text\";s:0:\"\";s:24:\"flrich1581097493577_text\";s:0:\"\";}}}'),(672,136,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(674,44,'_fl_builder_history_state_0','a:4:{s:5:\"label\";s:13:\"draft_created\";s:11:\"module_type\";s:0:\"\";s:5:\"nodes\";a:12:{s:13:\"5e2f4faf046bf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf046bf\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f4faf0c09e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf0c09e\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f4faf046bf\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f4faf0fd8d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf0fd8d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f4faf0c09e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"31.33\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f4faf13a7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf13a7c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f4faf0c09e\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"68.67\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f514e42475\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f514e42475\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f4faf0fd8d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"24\";s:9:\"photo_src\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"83\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:24;s:5:\"title\";s:14:\"Rockwell-Large\";s:8:\"filename\";s:18:\"Rockwell-Large.jpg\";s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:4:\"link\";s:49:\"http://gwendowment.org/wordpress1/rockwell-large/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:14:\"rockwell-large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316978000;s:8:\"modified\";d:1575316978000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"482f126b6f\";s:6:\"delete\";s:10:\"36eaf4a3e8\";s:4:\"edit\";s:10:\"7ecb2a2d3c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=24&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1502959;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1481;s:5:\"width\";i:2400;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:185;s:5:\"width\";i:300;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-300x185.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:632;s:5:\"width\";i:1024;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-1024x632.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:6:\"height\";i:1481;s:5:\"width\";i:2400;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f51fa41c2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f51fa41c2f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f4faf13a7c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":38:{s:4:\"text\";s:2636:\"<h2 style=\"text-align: center;\">Quality and Equality</h2>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">Across the United States, too many K-12 schools are failing too many students. Two out of three eighth-graders can’t read proficiently. Two out of three score below proficient in math. Seventy-five percent of students are not proficient in civics. Nearly three out of four 12th-grade students cannot write proficiently. More than one million American students drop out of school every year and only one in four who do graduate from high school are ready for college in the four core subjects of English, reading, math and science.\n</span>\n<span style=\"font-size: 16px; color: #808080;\">American students now rank 25th in math, 17th in science and 14th in reading compared to students in 27 industrialized countries. Still more troubling is that fact that a longitudinal study of PISA results indicates that America’s high school students are continuing to fall further and further behind.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">And, in America’s K-12 schools, quality is not the only issue. Equality has proven to be an equally elusive goal. According to a 2009 Civil Rights Project report published by the Regents of the University of California, “Fifty-five years after the Brown decision, blacks and Latinos in American schools are more segregated than they have been in four decades.” The results are devastating. For African-American and Hispanic students across the country, dropout rates are close to 40 percent, compared to the national average of 27 percent. Only 4 percent of African American students and 11 percent of Hispanic students who do finish high school are ready for college in their core subjects.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">In fact, access to quality education is a global challenge. It is the next great civil right. In the area of education, many of the 2015 Millennial Development Goals set by the United Nations were not met—especially in Sub-Saharan Africa. According to a UNESCO report published at the September 8th (2014) Conference on Literacy and Sustainable Development, “Poor quality education is leaving a legacy of illiteracy more widespread than previously believed: one in four young people—175 million adolescents—is unable to read a single sentence.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">The Endowment exists solely to “provide direct aid to worthy scholars.” Whether here in the United States or abroad, its mission is to redeem what Thomas Jefferson called, “genius buried in poverty.”</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580159486313_text\";s:0:\"\";s:24:\"flrich1580159514030_text\";s:0:\"\";s:24:\"flrich1580159541781_text\";s:0:\"\";s:24:\"flrich1581096501123_text\";s:0:\"\";s:24:\"flrich1581096594369_text\";s:0:\"\";s:24:\"flrich1581096865553_text\";s:0:\"\";}}s:13:\"5e2f5351d9773\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351d9773\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"698\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f5351ec820\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351ec820\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5351d9773\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f5351f050f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351f050f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f5351ec820\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"47.45\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"56\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e2f5351f41fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351f41fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f5351ec820\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:52.549999999999997;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f536e002a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f536e002a6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f5351f41fe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"22\";s:9:\"photo_src\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:22;s:5:\"title\";s:15:\"Robert_Hutchins\";s:8:\"filename\";s:19:\"Robert_Hutchins.jpg\";s:3:\"url\";s:80:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins.jpg\";s:4:\"link\";s:50:\"http://gwendowment.org/wordpress1/robert_hutchins/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"robert_hutchins\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316950000;s:8:\"modified\";d:1575316950000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b854b98f40\";s:6:\"delete\";s:10:\"d31aa3792a\";s:4:\"edit\";s:10:\"3ca4787f1f\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=22&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:19878;s:21:\"filesizeHumanReadable\";s:5:\"19 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:412;s:5:\"width\";i:518;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:239;s:5:\"width\";i:300;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:80:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins.jpg\";s:6:\"height\";i:412;s:5:\"width\";i:518;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f53d2d35d8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f53d2d35d8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f5351f050f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:273:\" \n<table>\n<tbody>\n<tr>\n<td valign=\"right\"><span style=\"font-size: 16px;\">“The Education that is best for the best is the education that is best for all.” </span>\n\n<span style=\"font-size: 16px;\">— Robert Maynard Hutchins</span></td>\n</tr>\n</tbody>\n</table>\n \";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580159958920_text\";s:0:\"\";s:24:\"flrich1580160044732_text\";s:0:\"\";s:24:\"flrich1581096971992_text\";s:0:\"\";s:24:\"flrich1581096998497_text\";s:0:\"\";s:24:\"flrich1581097348706_text\";s:0:\"\";s:24:\"flrich1581097434321_text\";s:0:\"\";s:24:\"flrich1581097493577_text\";s:0:\"\";}}}s:8:\"settings\";a:2:{s:6:\"global\";O:8:\"stdClass\":44:{s:20:\"show_default_heading\";s:1:\"0\";s:24:\"default_heading_selector\";s:15:\".fl-post-header\";s:11:\"row_margins\";s:1:\"0\";s:16:\"row_margins_unit\";s:2:\"px\";s:18:\"row_margins_medium\";s:0:\"\";s:23:\"row_margins_medium_unit\";s:2:\"px\";s:22:\"row_margins_responsive\";s:0:\"\";s:27:\"row_margins_responsive_unit\";s:2:\"px\";s:11:\"row_padding\";s:2:\"20\";s:16:\"row_padding_unit\";s:2:\"px\";s:18:\"row_padding_medium\";s:0:\"\";s:23:\"row_padding_medium_unit\";s:2:\"px\";s:22:\"row_padding_responsive\";s:0:\"\";s:27:\"row_padding_responsive_unit\";s:2:\"px\";s:9:\"row_width\";s:4:\"1100\";s:14:\"row_width_unit\";s:2:\"px\";s:17:\"row_width_default\";s:5:\"fixed\";s:25:\"row_content_width_default\";s:5:\"fixed\";s:14:\"column_margins\";s:0:\"\";s:19:\"column_margins_unit\";s:2:\"px\";s:21:\"column_margins_medium\";s:0:\"\";s:26:\"column_margins_medium_unit\";s:2:\"px\";s:25:\"column_margins_responsive\";s:0:\"\";s:30:\"column_margins_responsive_unit\";s:2:\"px\";s:14:\"column_padding\";s:0:\"\";s:19:\"column_padding_unit\";s:2:\"px\";s:21:\"column_padding_medium\";s:0:\"\";s:26:\"column_padding_medium_unit\";s:2:\"px\";s:25:\"column_padding_responsive\";s:0:\"\";s:30:\"column_padding_responsive_unit\";s:2:\"px\";s:14:\"module_margins\";s:2:\"20\";s:19:\"module_margins_unit\";s:2:\"px\";s:21:\"module_margins_medium\";s:0:\"\";s:26:\"module_margins_medium_unit\";s:2:\"px\";s:25:\"module_margins_responsive\";s:0:\"\";s:30:\"module_margins_responsive_unit\";s:2:\"px\";s:18:\"responsive_enabled\";s:1:\"1\";s:12:\"auto_spacing\";s:1:\"1\";s:17:\"medium_breakpoint\";s:3:\"992\";s:21:\"responsive_breakpoint\";s:3:\"768\";s:24:\"responsive_col_max_width\";s:1:\"1\";s:24:\"responsive_base_fontsize\";s:2:\"16\";s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}s:6:\"layout\";O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}}}'),(675,44,'_fl_builder_history_state_1','a:4:{s:5:\"label\";s:13:\"module_edited\";s:11:\"module_type\";s:5:\"photo\";s:5:\"nodes\";a:12:{s:13:\"5e2f4faf046bf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf046bf\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f4faf0c09e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf0c09e\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f4faf046bf\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f4faf0fd8d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf0fd8d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f4faf0c09e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"31.33\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f4faf13a7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf13a7c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f4faf0c09e\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"68.67\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f514e42475\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f514e42475\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f4faf0fd8d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"24\";s:9:\"photo_src\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"85\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:24;s:5:\"title\";s:14:\"Rockwell-Large\";s:8:\"filename\";s:18:\"Rockwell-Large.jpg\";s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:4:\"link\";s:49:\"http://gwendowment.org/wordpress1/rockwell-large/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:14:\"rockwell-large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316978000;s:8:\"modified\";d:1575316978000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"482f126b6f\";s:6:\"delete\";s:10:\"36eaf4a3e8\";s:4:\"edit\";s:10:\"7ecb2a2d3c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=24&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1502959;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1481;s:5:\"width\";i:2400;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:185;s:5:\"width\";i:300;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-300x185.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:632;s:5:\"width\";i:1024;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-1024x632.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:6:\"height\";i:1481;s:5:\"width\";i:2400;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f51fa41c2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f51fa41c2f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f4faf13a7c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":38:{s:4:\"text\";s:2636:\"<h2 style=\"text-align: center;\">Quality and Equality</h2>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">Across the United States, too many K-12 schools are failing too many students. Two out of three eighth-graders can’t read proficiently. Two out of three score below proficient in math. Seventy-five percent of students are not proficient in civics. Nearly three out of four 12th-grade students cannot write proficiently. More than one million American students drop out of school every year and only one in four who do graduate from high school are ready for college in the four core subjects of English, reading, math and science.\n</span>\n<span style=\"font-size: 16px; color: #808080;\">American students now rank 25th in math, 17th in science and 14th in reading compared to students in 27 industrialized countries. Still more troubling is that fact that a longitudinal study of PISA results indicates that America’s high school students are continuing to fall further and further behind.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">And, in America’s K-12 schools, quality is not the only issue. Equality has proven to be an equally elusive goal. According to a 2009 Civil Rights Project report published by the Regents of the University of California, “Fifty-five years after the Brown decision, blacks and Latinos in American schools are more segregated than they have been in four decades.” The results are devastating. For African-American and Hispanic students across the country, dropout rates are close to 40 percent, compared to the national average of 27 percent. Only 4 percent of African American students and 11 percent of Hispanic students who do finish high school are ready for college in their core subjects.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">In fact, access to quality education is a global challenge. It is the next great civil right. In the area of education, many of the 2015 Millennial Development Goals set by the United Nations were not met—especially in Sub-Saharan Africa. According to a UNESCO report published at the September 8th (2014) Conference on Literacy and Sustainable Development, “Poor quality education is leaving a legacy of illiteracy more widespread than previously believed: one in four young people—175 million adolescents—is unable to read a single sentence.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">The Endowment exists solely to “provide direct aid to worthy scholars.” Whether here in the United States or abroad, its mission is to redeem what Thomas Jefferson called, “genius buried in poverty.”</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580159486313_text\";s:0:\"\";s:24:\"flrich1580159514030_text\";s:0:\"\";s:24:\"flrich1580159541781_text\";s:0:\"\";s:24:\"flrich1581096501123_text\";s:0:\"\";s:24:\"flrich1581096594369_text\";s:0:\"\";s:24:\"flrich1581096865553_text\";s:0:\"\";}}s:13:\"5e2f5351d9773\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351d9773\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"698\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f5351ec820\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351ec820\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5351d9773\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f5351f050f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351f050f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f5351ec820\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"47.45\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"56\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e2f5351f41fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351f41fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f5351ec820\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:52.549999999999997;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f536e002a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f536e002a6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f5351f41fe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"22\";s:9:\"photo_src\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:22;s:5:\"title\";s:15:\"Robert_Hutchins\";s:8:\"filename\";s:19:\"Robert_Hutchins.jpg\";s:3:\"url\";s:80:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins.jpg\";s:4:\"link\";s:50:\"http://gwendowment.org/wordpress1/robert_hutchins/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"robert_hutchins\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316950000;s:8:\"modified\";d:1575316950000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b854b98f40\";s:6:\"delete\";s:10:\"d31aa3792a\";s:4:\"edit\";s:10:\"3ca4787f1f\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=22&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:19878;s:21:\"filesizeHumanReadable\";s:5:\"19 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:412;s:5:\"width\";i:518;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:239;s:5:\"width\";i:300;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:80:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins.jpg\";s:6:\"height\";i:412;s:5:\"width\";i:518;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f53d2d35d8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f53d2d35d8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f5351f050f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:273:\" \n<table>\n<tbody>\n<tr>\n<td valign=\"right\"><span style=\"font-size: 16px;\">“The Education that is best for the best is the education that is best for all.” </span>\n\n<span style=\"font-size: 16px;\">— Robert Maynard Hutchins</span></td>\n</tr>\n</tbody>\n</table>\n \";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580159958920_text\";s:0:\"\";s:24:\"flrich1580160044732_text\";s:0:\"\";s:24:\"flrich1581096971992_text\";s:0:\"\";s:24:\"flrich1581096998497_text\";s:0:\"\";s:24:\"flrich1581097348706_text\";s:0:\"\";s:24:\"flrich1581097434321_text\";s:0:\"\";s:24:\"flrich1581097493577_text\";s:0:\"\";}}}s:8:\"settings\";a:2:{s:6:\"global\";O:8:\"stdClass\":44:{s:20:\"show_default_heading\";s:1:\"0\";s:24:\"default_heading_selector\";s:15:\".fl-post-header\";s:11:\"row_margins\";s:1:\"0\";s:16:\"row_margins_unit\";s:2:\"px\";s:18:\"row_margins_medium\";s:0:\"\";s:23:\"row_margins_medium_unit\";s:2:\"px\";s:22:\"row_margins_responsive\";s:0:\"\";s:27:\"row_margins_responsive_unit\";s:2:\"px\";s:11:\"row_padding\";s:2:\"20\";s:16:\"row_padding_unit\";s:2:\"px\";s:18:\"row_padding_medium\";s:0:\"\";s:23:\"row_padding_medium_unit\";s:2:\"px\";s:22:\"row_padding_responsive\";s:0:\"\";s:27:\"row_padding_responsive_unit\";s:2:\"px\";s:9:\"row_width\";s:4:\"1100\";s:14:\"row_width_unit\";s:2:\"px\";s:17:\"row_width_default\";s:5:\"fixed\";s:25:\"row_content_width_default\";s:5:\"fixed\";s:14:\"column_margins\";s:0:\"\";s:19:\"column_margins_unit\";s:2:\"px\";s:21:\"column_margins_medium\";s:0:\"\";s:26:\"column_margins_medium_unit\";s:2:\"px\";s:25:\"column_margins_responsive\";s:0:\"\";s:30:\"column_margins_responsive_unit\";s:2:\"px\";s:14:\"column_padding\";s:0:\"\";s:19:\"column_padding_unit\";s:2:\"px\";s:21:\"column_padding_medium\";s:0:\"\";s:26:\"column_padding_medium_unit\";s:2:\"px\";s:25:\"column_padding_responsive\";s:0:\"\";s:30:\"column_padding_responsive_unit\";s:2:\"px\";s:14:\"module_margins\";s:2:\"20\";s:19:\"module_margins_unit\";s:2:\"px\";s:21:\"module_margins_medium\";s:0:\"\";s:26:\"module_margins_medium_unit\";s:2:\"px\";s:25:\"module_margins_responsive\";s:0:\"\";s:30:\"module_margins_responsive_unit\";s:2:\"px\";s:18:\"responsive_enabled\";s:1:\"1\";s:12:\"auto_spacing\";s:1:\"1\";s:17:\"medium_breakpoint\";s:3:\"992\";s:21:\"responsive_breakpoint\";s:3:\"768\";s:24:\"responsive_col_max_width\";s:1:\"1\";s:24:\"responsive_base_fontsize\";s:2:\"16\";s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}s:6:\"layout\";O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}}}'),(676,137,'_fl_builder_data','a:12:{s:13:\"5e2f4faf046bf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf046bf\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f4faf0c09e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf0c09e\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f4faf046bf\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f4faf0fd8d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf0fd8d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f4faf0c09e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"31.33\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f4faf13a7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f4faf13a7c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f4faf0c09e\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"68.67\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f514e42475\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f514e42475\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f4faf0fd8d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"24\";s:9:\"photo_src\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"85\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:24;s:5:\"title\";s:14:\"Rockwell-Large\";s:8:\"filename\";s:18:\"Rockwell-Large.jpg\";s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:4:\"link\";s:49:\"http://gwendowment.org/wordpress1/rockwell-large/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:14:\"rockwell-large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316978000;s:8:\"modified\";d:1575316978000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"482f126b6f\";s:6:\"delete\";s:10:\"36eaf4a3e8\";s:4:\"edit\";s:10:\"7ecb2a2d3c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=24&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1502959;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1481;s:5:\"width\";i:2400;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:185;s:5:\"width\";i:300;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-300x185.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:632;s:5:\"width\";i:1024;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large-1024x632.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\";s:6:\"height\";i:1481;s:5:\"width\";i:2400;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f51fa41c2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f51fa41c2f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f4faf13a7c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":38:{s:4:\"text\";s:2636:\"<h2 style=\"text-align: center;\">Quality and Equality</h2>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">Across the United States, too many K-12 schools are failing too many students. Two out of three eighth-graders can’t read proficiently. Two out of three score below proficient in math. Seventy-five percent of students are not proficient in civics. Nearly three out of four 12th-grade students cannot write proficiently. More than one million American students drop out of school every year and only one in four who do graduate from high school are ready for college in the four core subjects of English, reading, math and science.\n</span>\n<span style=\"font-size: 16px; color: #808080;\">American students now rank 25th in math, 17th in science and 14th in reading compared to students in 27 industrialized countries. Still more troubling is that fact that a longitudinal study of PISA results indicates that America’s high school students are continuing to fall further and further behind.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">And, in America’s K-12 schools, quality is not the only issue. Equality has proven to be an equally elusive goal. According to a 2009 Civil Rights Project report published by the Regents of the University of California, “Fifty-five years after the Brown decision, blacks and Latinos in American schools are more segregated than they have been in four decades.” The results are devastating. For African-American and Hispanic students across the country, dropout rates are close to 40 percent, compared to the national average of 27 percent. Only 4 percent of African American students and 11 percent of Hispanic students who do finish high school are ready for college in their core subjects.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">In fact, access to quality education is a global challenge. It is the next great civil right. In the area of education, many of the 2015 Millennial Development Goals set by the United Nations were not met—especially in Sub-Saharan Africa. According to a UNESCO report published at the September 8th (2014) Conference on Literacy and Sustainable Development, “Poor quality education is leaving a legacy of illiteracy more widespread than previously believed: one in four young people—175 million adolescents—is unable to read a single sentence.</span>\n\n<span style=\"font-size: 16px; color: #808080;\">The Endowment exists solely to “provide direct aid to worthy scholars.” Whether here in the United States or abroad, its mission is to redeem what Thomas Jefferson called, “genius buried in poverty.”</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580159486313_text\";s:0:\"\";s:24:\"flrich1580159514030_text\";s:0:\"\";s:24:\"flrich1580159541781_text\";s:0:\"\";s:24:\"flrich1581096501123_text\";s:0:\"\";s:24:\"flrich1581096594369_text\";s:0:\"\";s:24:\"flrich1581096865553_text\";s:0:\"\";}}s:13:\"5e2f5351d9773\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351d9773\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"698\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f5351ec820\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351ec820\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5351d9773\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f5351f050f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351f050f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f5351ec820\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"47.45\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"56\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e2f5351f41fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5351f41fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f5351ec820\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:52.549999999999997;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f536e002a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f536e002a6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f5351f41fe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"22\";s:9:\"photo_src\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:22;s:5:\"title\";s:15:\"Robert_Hutchins\";s:8:\"filename\";s:19:\"Robert_Hutchins.jpg\";s:3:\"url\";s:80:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins.jpg\";s:4:\"link\";s:50:\"http://gwendowment.org/wordpress1/robert_hutchins/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"robert_hutchins\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316950000;s:8:\"modified\";d:1575316950000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b854b98f40\";s:6:\"delete\";s:10:\"d31aa3792a\";s:4:\"edit\";s:10:\"3ca4787f1f\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=22&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:19878;s:21:\"filesizeHumanReadable\";s:5:\"19 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:412;s:5:\"width\";i:518;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:239;s:5:\"width\";i:300;s:3:\"url\";s:88:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:80:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins.jpg\";s:6:\"height\";i:412;s:5:\"width\";i:518;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f53d2d35d8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f53d2d35d8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f5351f050f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:273:\" \n<table>\n<tbody>\n<tr>\n<td valign=\"right\"><span style=\"font-size: 16px;\">“The Education that is best for the best is the education that is best for all.” </span>\n\n<span style=\"font-size: 16px;\">— Robert Maynard Hutchins</span></td>\n</tr>\n</tbody>\n</table>\n \";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580159958920_text\";s:0:\"\";s:24:\"flrich1580160044732_text\";s:0:\"\";s:24:\"flrich1581096971992_text\";s:0:\"\";s:24:\"flrich1581096998497_text\";s:0:\"\";s:24:\"flrich1581097348706_text\";s:0:\"\";s:24:\"flrich1581097434321_text\";s:0:\"\";s:24:\"flrich1581097493577_text\";s:0:\"\";}}}'),(677,137,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(678,39,'_fl_builder_history_position','0'),(715,138,'_fl_builder_data','a:12:{s:13:\"5e2f1657a010e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1657a010e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f1ab15d915\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":44:{s:4:\"text\";s:1544:\" \n<h2 style=\"color: #4b5887;\"><strong>Leadership & Teamwork</strong></span></h2>\n<h4 style=\"color: #4b5887;\"> <b>Board of Governors and Visitors</b></h4>\n\n<hr />\n\nT. Robinson Ahlstrom, Bloomfield Hills, MI\n<i>Chairman & CEO, GW Scholars Endowment\nChair, Executive Committee</i>\n\nJames Caraher, Chicago, IL\n<i>Principal, Caraher Corporation\nChair, Real Estate Committee</i>\n\nDean A. Christiansen, New York, NY\n<i>Principal, Acacia Capital</i>\n\nGeorge Cranmer, Oxfordshire, England\n<i>Director, Cranmer Lawrence, LTD</i>\n\nJerome F. Dausman, Hamilton, NJ\n<i>Director of Analytics, The Detroit Latin School\nInterim Treasurer</i>\n\nPaul Evans, Cincinnati, OH\n<i>Director of Investments, Rosetta Partners</i>\n\nRonald Gardhouse\n<i>V.P. Chrysler Corporation (Ret.)\nChair, Budget & Finance Committee</i>\n\nJae Gardner, New York, NY\n<i>Founder & President, The Ivy Key</i>\n\nDr. Arnold A. Kummerow\n<i>Superintendent, Armada (MI) Area Schools (Ret.)</i>\n\nJohn Lind, Huntington Beach, CA\n<i>President, Lind & Associates\nChair, Enterprise & Development Committee</i>\n\nAndrew Lucaciu, Washington, DC\n<i>Senior Program Analyst, F.E.M.A.</i>\n\nF. Landey Patton, Lexington, VA\n<i>Innkeeper, The Abigail Inn</i>\n\nKymberly Peer, Bloomfield Hills, MI\n<i>Buyer/Director of Operations, Sposa Bella Couture Enterprise & Development Committee</i>\n\nDr. James Tooley, Manchester, England\n<i>Professor of Education Policy, Newcastle University</i>\n\nCurt Welling, Norwich, VT\n<i>Senior Fellow, Tuck School of Management, Dartmouth College</i>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"-25\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580144220065_text\";s:0:\"\";s:24:\"flrich1580144596978_text\";s:0:\"\";s:24:\"flrich1580144657273_text\";s:0:\"\";s:24:\"flrich1580144692076_text\";s:0:\"\";s:24:\"flrich1580145075258_text\";s:0:\"\";s:24:\"flrich1580145092551_text\";s:0:\"\";s:24:\"flrich1580145286675_text\";s:0:\"\";s:24:\"flrich1581098144997_text\";s:0:\"\";s:24:\"flrich1581098387235_text\";s:0:\"\";s:24:\"flrich1581098583501_text\";s:0:\"\";s:24:\"flrich1581098668122_text\";s:0:\"\";s:24:\"flrich1581098710208_text\";s:0:\"\";}}s:13:\"5e2f16b974e78\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f16b974e78\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f1ab1652f3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"13\";s:9:\"photo_src\";s:111:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:4:\"4000\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:13;s:5:\"title\";s:31:\"Biglin_Brothers_Racing_1148x294\";s:8:\"filename\";s:50:\"Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\";s:3:\"url\";s:111:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\";s:4:\"link\";s:66:\"http://gwendowment.org/wordpress1/biglin_brothers_racing_1148x294/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"biglin_brothers_racing_1148x294\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316901000;s:8:\"modified\";d:1580148205000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"f0e2e32731\";s:6:\"delete\";s:10:\"26d3d2e87c\";s:4:\"edit\";s:10:\"7301ab0582\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=13&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:178928;s:21:\"filesizeHumanReadable\";s:6:\"175 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:642;s:5:\"width\";i:1145;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:119:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:168;s:5:\"width\";i:300;s:3:\"url\";s:119:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746-300x168.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:574;s:5:\"width\";i:1024;s:3:\"url\";s:120:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746-1024x574.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:111:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\";s:6:\"height\";i:642;s:5:\"width\";i:1145;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f1ab14a868\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab14a868\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f1ab155f36\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab155f36\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f1ab14a868\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f1ab159c25\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab159c25\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f1ab155f36\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:1:\"8\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f1ab15d915\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab15d915\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f1ab155f36\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"20.97\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f1ab1652f3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1ab1652f3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f1ab155f36\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"71.03\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f1bdbe510f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f1bdbe510f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f2bb632221\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"28\";s:9:\"photo_src\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:28;s:5:\"title\";s:14:\"Vince_Lombardi\";s:8:\"filename\";s:18:\"Vince_Lombardi.jpg\";s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi.jpg\";s:4:\"link\";s:49:\"http://gwendowment.org/wordpress1/vince_lombardi/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:141:\"“People who work together will win, whether it be against complex football defenses, or the problems of modern society.” - Vince Lombardi\";s:4:\"name\";s:14:\"vince_lombardi\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575317063000;s:8:\"modified\";d:1580145872000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"9343b4d6dd\";s:6:\"delete\";s:10:\"2f5c5d6c20\";s:4:\"edit\";s:10:\"29a6694832\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=28&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:10109;s:21:\"filesizeHumanReadable\";s:5:\"10 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:225;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:225;s:5:\"width\";i:300;s:3:\"url\";s:87:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi-300x225.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:79:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi.jpg\";s:6:\"height\";i:225;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e2f2695d3c6b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f2695d3c6b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f2bb635f11\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:4:\"text\";s:192:\"<span style = \"font-size: 14px; color: #808080;\"<strong>\"People who work together will win, whether it be against complex football defenses, or the problems of modern society.\"</strong></span>\";s:5:\"color\";s:6:\"cccccc\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580148379175_text\";s:0:\"\";s:24:\"flrich1580149223748_text\";s:0:\"\";s:24:\"flrich1580149290492_text\";s:0:\"\";s:24:\"flrich1580149374371_text\";s:0:\"\";s:24:\"flrich1580149773557_text\";s:0:\"\";s:24:\"flrich1580150026996_text\";s:0:\"\";s:24:\"flrich1580150082296_text\";s:0:\"\";s:24:\"flrich1580150142794_text\";s:0:\"\";s:24:\"flrich1581098276316_text\";s:0:\"\";s:24:\"flrich1581098303945_text\";s:0:\"\";}}s:13:\"5e2f2bb62e532\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f2bb62e532\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f1ab1652f3\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f2bb632221\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f2bb632221\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f2bb62e532\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:33.340000000000003;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"60\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e2f2bb635f11\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f2bb635f11\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f2bb62e532\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"66.66\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"140\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}}'),(716,138,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(717,76,'_fl_builder_history_position','0'),(763,139,'_fl_builder_data','a:17:{s:13:\"5e3c4e59c908e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c908e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":142:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c4e59c9099\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c9099\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c908e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90a0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c9099\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"cccccc\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"10\";s:9:\"top_right\";s:2:\"10\";s:11:\"bottom_left\";s:2:\"10\";s:12:\"bottom_right\";s:2:\"10\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90a9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":73:{s:4:\"text\";s:12:\"Find out how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:59:\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"duo_color1\";s:0:\"\";s:10:\"duo_color2\";s:0:\"\";s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c4e59c90ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90ad\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c90ad\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:3:\"100\";s:15:\"size_responsive\";s:3:\"100\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"1\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90b2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":70:{s:4:\"text\";s:235:\"<div style=\"background-color: white; border-radius: 20px;\">\n<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 45px;\">Discover and develop genius in children who are living in poverty.</span></p>\n\n</div>\";s:5:\"color\";s:19:\"rgba(35,32,24,0.86)\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:12:\"Marcellus SC\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"-1\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";s:24:\"flrich1581011019155_text\";s:0:\"\";s:24:\"flrich1581011050367_text\";s:0:\"\";s:24:\"flrich1581013921071_text\";s:0:\"\";s:24:\"flrich1581013971763_text\";s:0:\"\";s:24:\"flrich1581024806923_text\";s:0:\"\";s:24:\"flrich1581024846716_text\";s:0:\"\";s:24:\"flrich1581024987925_text\";s:0:\"\";s:24:\"flrich1581025004526_text\";s:0:\"\";s:24:\"flrich1581031573330_text\";s:0:\"\";s:24:\"flrich1581031699580_text\";s:0:\"\";s:24:\"flrich1581031805420_text\";s:0:\"\";s:24:\"flrich1581031918231_text\";s:0:\"\";s:24:\"flrich1581033525614_text\";s:0:\"\";s:24:\"flrich1581033650175_text\";s:0:\"\";s:24:\"flrich1581033842313_text\";s:0:\"\";s:24:\"flrich1581033948047_text\";s:0:\"\";s:24:\"flrich1581034131482_text\";s:0:\"\";s:24:\"flrich1581034160102_text\";s:0:\"\";s:24:\"flrich1581034416371_text\";s:0:\"\";s:24:\"flrich1581099007208_text\";s:0:\"\";s:24:\"flrich1581099115892_text\";s:0:\"\";}}s:13:\"5e3c509278f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c509278f9f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:3:\"150\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5092894d9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5092894d9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c50928988a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c50928988a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:43.93;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c51e8b9546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c51e8b9546\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c50928988a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"cccccc\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b286c8c576\";s:6:\"delete\";s:10:\"5134a89e91\";s:4:\"edit\";s:10:\"99ffdd8e1c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e3c523ae1fcb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c523ae1fcb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"56.07\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:6:\"ffffff\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"17\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c525fdd3b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c525fdd3b2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c523ae1fcb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:12:\"mobile_title\";s:4:\"Menu\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"f4f4f4\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5e3c54857e283\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e283\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c54857e636\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e636\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c54857e283\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-40\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c54857e08a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e08a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c54857e636\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"39\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}s:13:\"5e3c84c5c88e7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c84c5c88e7\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":63:{s:4:\"text\";s:128:\"<div style=\"background-color: #4b5887; border-radius: 20px;\">\n<p>The George Washington Scholars Endowment</p>\n<p>1785</p>\n</div>\";s:5:\"color\";s:6:\"efefef\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";s:24:\"flrich1581008407534_text\";s:0:\"\";s:24:\"flrich1581008461545_text\";s:0:\"\";s:24:\"flrich1581008620399_text\";s:0:\"\";s:24:\"flrich1581008644626_text\";s:0:\"\";s:24:\"flrich1581010771548_text\";s:0:\"\";s:24:\"flrich1581010994739_text\";s:0:\"\";s:24:\"flrich1581012929831_text\";s:0:\"\";s:24:\"flrich1581024487803_text\";s:0:\"\";s:24:\"flrich1581024557979_text\";s:0:\"\";s:24:\"flrich1581024997950_text\";s:0:\"\";}}}'),(764,139,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:56:\".fl-page-header{display: none;}\r\n.fl-menu {body: white;}\";s:2:\"js\";s:0:\"\";}'),(775,140,'_fl_builder_data','a:17:{s:13:\"5e3c4e59c908e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c908e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":142:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c4e59c9099\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c9099\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c908e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90a0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c9099\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"cccccc\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"10\";s:9:\"top_right\";s:2:\"10\";s:11:\"bottom_left\";s:2:\"10\";s:12:\"bottom_right\";s:2:\"10\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"30\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90a9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":73:{s:4:\"text\";s:12:\"Find out how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:59:\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"duo_color1\";s:0:\"\";s:10:\"duo_color2\";s:0:\"\";s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c4e59c90ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90ad\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c90ad\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:3:\"100\";s:15:\"size_responsive\";s:3:\"100\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"1\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90b2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":71:{s:4:\"text\";s:222:\"<div style=\"background-color: white; border-radius: 20px;\">\n<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 45px;\">Develop genius in children who are living in poverty.</span></p>\n\n</div>\";s:5:\"color\";s:19:\"rgba(35,32,24,0.86)\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:12:\"Marcellus SC\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"-1\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";s:24:\"flrich1581011019155_text\";s:0:\"\";s:24:\"flrich1581011050367_text\";s:0:\"\";s:24:\"flrich1581013921071_text\";s:0:\"\";s:24:\"flrich1581013971763_text\";s:0:\"\";s:24:\"flrich1581024806923_text\";s:0:\"\";s:24:\"flrich1581024846716_text\";s:0:\"\";s:24:\"flrich1581024987925_text\";s:0:\"\";s:24:\"flrich1581025004526_text\";s:0:\"\";s:24:\"flrich1581031573330_text\";s:0:\"\";s:24:\"flrich1581031699580_text\";s:0:\"\";s:24:\"flrich1581031805420_text\";s:0:\"\";s:24:\"flrich1581031918231_text\";s:0:\"\";s:24:\"flrich1581033525614_text\";s:0:\"\";s:24:\"flrich1581033650175_text\";s:0:\"\";s:24:\"flrich1581033842313_text\";s:0:\"\";s:24:\"flrich1581033948047_text\";s:0:\"\";s:24:\"flrich1581034131482_text\";s:0:\"\";s:24:\"flrich1581034160102_text\";s:0:\"\";s:24:\"flrich1581034416371_text\";s:0:\"\";s:24:\"flrich1581099007208_text\";s:0:\"\";s:24:\"flrich1581099115892_text\";s:0:\"\";s:24:\"flrich1581099720891_text\";s:0:\"\";}}s:13:\"5e3c509278f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c509278f9f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:3:\"150\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5092894d9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5092894d9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c50928988a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c50928988a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:43.93;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c51e8b9546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c51e8b9546\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c50928988a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"cccccc\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b286c8c576\";s:6:\"delete\";s:10:\"5134a89e91\";s:4:\"edit\";s:10:\"99ffdd8e1c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e3c523ae1fcb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c523ae1fcb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"56.07\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:6:\"ffffff\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"17\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c525fdd3b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c525fdd3b2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c523ae1fcb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:12:\"mobile_title\";s:4:\"Menu\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"f4f4f4\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5e3c54857e283\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e283\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c54857e636\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e636\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c54857e283\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-40\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c54857e08a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e08a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c54857e636\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"39\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}s:13:\"5e3c84c5c88e7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c84c5c88e7\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":63:{s:4:\"text\";s:128:\"<div style=\"background-color: #4b5887; border-radius: 20px;\">\n<p>The George Washington Scholars Endowment</p>\n<p>1785</p>\n</div>\";s:5:\"color\";s:6:\"efefef\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";s:24:\"flrich1581008407534_text\";s:0:\"\";s:24:\"flrich1581008461545_text\";s:0:\"\";s:24:\"flrich1581008620399_text\";s:0:\"\";s:24:\"flrich1581008644626_text\";s:0:\"\";s:24:\"flrich1581010771548_text\";s:0:\"\";s:24:\"flrich1581010994739_text\";s:0:\"\";s:24:\"flrich1581012929831_text\";s:0:\"\";s:24:\"flrich1581024487803_text\";s:0:\"\";s:24:\"flrich1581024557979_text\";s:0:\"\";s:24:\"flrich1581024997950_text\";s:0:\"\";}}}'),(776,140,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:56:\".fl-page-header{display: none;}\r\n.fl-menu {body: white;}\";s:2:\"js\";s:0:\"\";}'),(868,141,'_fl_builder_data','a:17:{s:13:\"5e3c4e59c908e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c908e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":142:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c4e59c9099\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c9099\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c908e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90a0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c9099\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"cccccc\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"10\";s:9:\"top_right\";s:2:\"10\";s:11:\"bottom_left\";s:2:\"10\";s:12:\"bottom_right\";s:2:\"10\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90a9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":73:{s:4:\"text\";s:12:\"Find out how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:59:\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"duo_color1\";s:0:\"\";s:10:\"duo_color2\";s:0:\"\";s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c4e59c90ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90ad\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c90ad\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:3:\"100\";s:15:\"size_responsive\";s:3:\"100\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"32\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90b2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":73:{s:4:\"text\";s:216:\"<div style=\"background-color: white; border-radius: 20px;\">\n<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 45px;\">Develop genius in children who live in poverty.</span></p>\n\n</div>\";s:5:\"color\";s:19:\"rgba(35,32,24,0.86)\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:12:\"Marcellus SC\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";s:24:\"flrich1581011019155_text\";s:0:\"\";s:24:\"flrich1581011050367_text\";s:0:\"\";s:24:\"flrich1581013921071_text\";s:0:\"\";s:24:\"flrich1581013971763_text\";s:0:\"\";s:24:\"flrich1581024806923_text\";s:0:\"\";s:24:\"flrich1581024846716_text\";s:0:\"\";s:24:\"flrich1581024987925_text\";s:0:\"\";s:24:\"flrich1581025004526_text\";s:0:\"\";s:24:\"flrich1581031573330_text\";s:0:\"\";s:24:\"flrich1581031699580_text\";s:0:\"\";s:24:\"flrich1581031805420_text\";s:0:\"\";s:24:\"flrich1581031918231_text\";s:0:\"\";s:24:\"flrich1581033525614_text\";s:0:\"\";s:24:\"flrich1581033650175_text\";s:0:\"\";s:24:\"flrich1581033842313_text\";s:0:\"\";s:24:\"flrich1581033948047_text\";s:0:\"\";s:24:\"flrich1581034131482_text\";s:0:\"\";s:24:\"flrich1581034160102_text\";s:0:\"\";s:24:\"flrich1581034416371_text\";s:0:\"\";s:24:\"flrich1581099007208_text\";s:0:\"\";s:24:\"flrich1581099115892_text\";s:0:\"\";s:24:\"flrich1581099720891_text\";s:0:\"\";s:24:\"flrich1581100055532_text\";s:0:\"\";s:24:\"flrich1581100276169_text\";s:0:\"\";}}s:13:\"5e3c509278f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c509278f9f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:3:\"150\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5092894d9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5092894d9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c50928988a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c50928988a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:43.93;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c51e8b9546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c51e8b9546\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c50928988a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"cccccc\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b286c8c576\";s:6:\"delete\";s:10:\"5134a89e91\";s:4:\"edit\";s:10:\"99ffdd8e1c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e3c523ae1fcb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c523ae1fcb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"56.07\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:6:\"ffffff\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"17\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c525fdd3b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c525fdd3b2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c523ae1fcb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:12:\"mobile_title\";s:4:\"Menu\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"f4f4f4\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5e3c54857e283\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e283\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c54857e636\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e636\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c54857e283\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-40\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c54857e08a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e08a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c54857e636\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"39\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}s:13:\"5e3c84c5c88e7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c84c5c88e7\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"text\";s:117:\"<div style=\"background-color: #4b5887; border-radius: 20px;\">\n\nThe George Washington Scholars Endowment\n\n1785\n\n</div>\";s:5:\"color\";s:6:\"efefef\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"19\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";s:24:\"flrich1581008407534_text\";s:0:\"\";s:24:\"flrich1581008461545_text\";s:0:\"\";s:24:\"flrich1581008620399_text\";s:0:\"\";s:24:\"flrich1581008644626_text\";s:0:\"\";s:24:\"flrich1581010771548_text\";s:0:\"\";s:24:\"flrich1581010994739_text\";s:0:\"\";s:24:\"flrich1581012929831_text\";s:0:\"\";s:24:\"flrich1581024487803_text\";s:0:\"\";s:24:\"flrich1581024557979_text\";s:0:\"\";s:24:\"flrich1581024997950_text\";s:0:\"\";s:24:\"flrich1581099982259_text\";s:0:\"\";s:24:\"flrich1581100034087_text\";s:0:\"\";s:24:\"flrich1581100108870_text\";s:0:\"\";s:24:\"flrich1581100192716_text\";s:0:\"\";}}}'),(869,141,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:56:\".fl-page-header{display: none;}\r\n.fl-menu {body: white;}\";s:2:\"js\";s:0:\"\";}'),(873,142,'_fl_builder_data','a:24:{s:13:\"5defa442b79ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442b79ad\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa442e54dc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e54dc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa442b79ad\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa442e91cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e91cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"73.03\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa4487c019\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa4487c019\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"26.97\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa46682ac2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa46682ac2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa442e91cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:1688:\"<h2 style=\"text-align: left;\">Investment & Impact</h2>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">Replenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”</span>\n\n<span style=\"font-size: 16px; color: #808080;\">Because the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:</span>\n<ul>\n <li><span style=\"font-size: 16px; color: #808080;\">Unusual Assets (such as a vehicle, work of art, or real estate),</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Wills or Trust Bequests,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Charitable Gift Annuities,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">IRA Rollover Gifts,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Appreciated Securities,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">The Gift of Life Insurance, and</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">A Charitable Remainder Trust.</span></li>\n</ul>\n<span style=\"font-size: 16px; color: #808080;\">Contributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986280828_text\";s:0:\"\";s:24:\"flrich1580160915873_text\";s:0:\"\";s:24:\"flrich1580160994089_text\";s:0:\"\";s:24:\"flrich1580161344480_text\";s:0:\"\";s:24:\"flrich1581095498524_text\";s:0:\"\";s:24:\"flrich1581095786968_text\";s:0:\"\";s:24:\"flrich1581096033906_text\";s:0:\"\";s:24:\"flrich1581096127044_text\";s:0:\"\";s:24:\"flrich1581096139577_text\";s:0:\"\";}}s:13:\"5defa49e863ae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa49e863ae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa4487c019\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"14\";s:9:\"photo_src\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"78\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:14;s:5:\"title\";s:33:\"Browne_Henriette_-_A_Girl_Writing\";s:8:\"filename\";s:37:\"Browne_Henriette_-_A_Girl_Writing.jpg\";s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:4:\"link\";s:68:\"http://gwendowment.org/wordpress1/browne_henriette_-_a_girl_writing/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:33:\"browne_henriette_-_a_girl_writing\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316922000;s:8:\"modified\";d:1575316922000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"cbfdbac09b\";s:6:\"delete\";s:10:\"f6d9112811\";s:4:\"edit\";s:10:\"0c52ac4872\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=14&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1164538;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:235;s:5:\"width\";i:300;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-300x235.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:803;s:5:\"width\";i:1024;s:3:\"url\";s:107:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-1024x803.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa61638f40\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa61638f40\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa647847cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:4:\"text\";s:581:\"<table>\n<tbody>\n<tr>\n<td align=\"center\"><form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><a href=\"https://www.paypal.com/donate/?token=pio1_s4_ClNIjZWHy8mP_VNrXBuwLTWzMPKh9GGOBuUp8rEEyVJeW0RVsEap0PZNoiR_pm&country.x=US&locale.x=US\"><input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\" /> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></a></form></td>\n</tr>\n</tbody>\n</table>\n \";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986713891_text\";s:0:\"\";s:24:\"flrich1575986794868_text\";s:0:\"\";s:24:\"flrich1575986998857_text\";s:0:\"\";s:24:\"flrich1581035202272_text\";s:0:\"\";}}s:13:\"5defa6476da2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6476da2f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"280\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa64780adc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa64780adc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6476da2f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa647847cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa647847cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa64780adc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa68337135\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68337135\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"670\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6834ded1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6834ded1\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa68337135\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa68351bc0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68351bc0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6834ded1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-50\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa692aebae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa692aebae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa68351bc0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:4:\"text\";s:290:\"<p style=\"text-align: center;\"><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i>\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986837297_text\";s:0:\"\";s:24:\"flrich1575986864207_text\";s:0:\"\";s:24:\"flrich1575987018674_text\";s:0:\"\";s:24:\"flrich1580161859153_text\";s:0:\"\";}}s:13:\"5defa6c87a58b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c87a58b\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:4;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:3:\"890\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6c88d635\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c88d635\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6c87a58b\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa6c891324\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c891324\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:36.850000000000001;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa6c895012\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c895012\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"63.15\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"60\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa6db0420a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6db0420a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c891324\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"15\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:15;s:5:\"title\";s:9:\"Eli_Broad\";s:8:\"filename\";s:13:\"Eli_Broad.jpg\";s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:4:\"link\";s:44:\"http://gwendowment.org/wordpress1/eli_broad/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:9:\"eli_broad\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316931000;s:8:\"modified\";d:1575316931000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"97e2e11f96\";s:6:\"delete\";s:10:\"bb92a16204\";s:4:\"edit\";s:10:\"3db9e3add6\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=15&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:9338;s:21:\"filesizeHumanReadable\";s:4:\"9 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:202;s:5:\"width\";i:300;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa704c89ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa704c89ba\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c895012\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:282:\"<span style=\"font-size: 14px; color: #808080;\">“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.”\n\n<span style=\"font-size:14px; color:#808080;\">- Eli Broad </span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986951424_text\";s:0:\"\";s:24:\"flrich1575987255360_text\";s:0:\"\";s:24:\"flrich1580161890254_text\";s:0:\"\";s:24:\"flrich1580161913017_text\";s:0:\"\";s:24:\"flrich1581100570325_text\";s:0:\"\";}}s:13:\"5e2f5808dc420\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5808dc420\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"946\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f580a09fdd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a09fdd\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5808dc420\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f580a0dccc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a0dccc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f580a09fdd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f58221b035\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f58221b035\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f580a0dccc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:4:\"text\";s:71:\"<h2 style=\"text-align: left;\"></h2>\n<h2 style=\"text-align: left;\"></h2>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:2:\"20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580161062185_text\";s:0:\"\";s:24:\"flrich1580161098815_text\";s:0:\"\";s:24:\"flrich1580161168623_text\";s:0:\"\";s:24:\"flrich1580161293055_text\";s:0:\"\";s:24:\"flrich1580161327619_text\";s:0:\"\";s:24:\"flrich1580161425665_text\";s:0:\"\";s:24:\"flrich1580161503018_text\";s:0:\"\";s:24:\"flrich1581095355305_text\";s:0:\"\";s:24:\"flrich1581095487519_text\";s:0:\"\";s:24:\"flrich1581095911342_text\";s:0:\"\";s:24:\"flrich1581096025954_text\";s:0:\"\";}}}'),(874,142,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(876,143,'_fl_builder_data','a:11:{s:13:\"5e330b418d386\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b418d386\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1114\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b4191075\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4191075\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e330b418d386\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e330b4194d65\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4194d65\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e330b4191075\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b666b520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b666b520\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e330b4194d65\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":54:{s:4:\"text\";s:1913:\"<h2>Education – The Birthright of Every Child</h2>\n\n<hr />\n\n<img class=\"size-full wp-image-83 alignright\" src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" />\n\n<span style=\"color: #808080; font-size: 18px;\">Every boy and girl born under heaven, whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">The very best schools understand that enabling this wonderful process—or this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.” </span>\n\n<span style=\"font-size: 18px; color: #808080;\">Faithfully,\nT. Robinson Ahlstrom - Chairman</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580403560441_text\";s:0:\"\";s:24:\"flrich1580403643677_text\";s:0:\"\";s:24:\"flrich1580403672359_text\";s:0:\"\";s:24:\"flrich1580404810052_text\";s:0:\"\";s:24:\"flrich1580405135309_text\";s:0:\"\";s:24:\"flrich1580405328584_text\";s:0:\"\";s:24:\"flrich1580406445376_text\";s:0:\"\";s:24:\"flrich1580406501486_text\";s:0:\"\";s:24:\"flrich1580406777884_text\";s:0:\"\";s:24:\"flrich1581026176694_text\";s:0:\"\";s:24:\"flrich1581026343922_text\";s:0:\"\";s:24:\"flrich1581026426115_text\";s:0:\"\";s:24:\"flrich1581026583916_text\";s:0:\"\";s:24:\"flrich1581026792428_text\";s:0:\"\";s:24:\"flrich1581027065631_text\";s:0:\"\";s:24:\"flrich1581027126736_text\";s:0:\"\";s:24:\"flrich1581027239411_text\";s:0:\"\";s:24:\"flrich1581028280748_text\";s:0:\"\";s:24:\"flrich1581029071269_text\";s:0:\"\";s:24:\"flrich1581030577877_text\";s:0:\"\";s:24:\"flrich1581030622674_text\";s:0:\"\";s:24:\"flrich1581030759972_text\";s:0:\"\";}}s:13:\"5e3c90b5d1e4c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d1e4c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"F5F2FD\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:1:\"2\";s:9:\"top_right\";s:1:\"2\";s:11:\"bottom_left\";s:1:\"2\";s:12:\"bottom_right\";s:1:\"2\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c90b5d98d8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d98d8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d1e4c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c90b5d9c57\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d9c57\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c90b5d98d8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c919a5c069\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c919a5c069\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:4:\"text\";s:152:\"<h4>\"Give children in need a chance at the very best education through GW Scholars Fund and help them become the people that God meant them to be.\"</h4>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1581027740534_text\";s:0:\"\";}}s:13:\"5e3c93e26e819\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26e819\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c93e26eb00\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26eb00\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c93e26e819\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c941c545de\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c941c545de\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c93e26eb00\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":104:{s:5:\"title\";s:10:\"Donate Now\";s:9:\"title_tag\";s:2:\"h3\";s:4:\"text\";s:132:\"<span style=\"font-size: 16px; color: #ffffff;\">Because a great education, full of wonder and awe, is the birthright of all. </span>\";s:6:\"layout\";s:6:\"inline\";s:8:\"bg_color\";s:6:\"4b5887\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:9:\"alignment\";s:6:\"center\";s:11:\"title_color\";s:0:\"\";s:16:\"title_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:23:\"title_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:27:\"title_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:22:\"text_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:26:\"text_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"btn_text\";s:6:\"Donate\";s:8:\"btn_link\";s:52:\"http://gwendowment.org/wordpress1/investment-impact/\";s:15:\"btn_link_target\";s:5:\"_self\";s:17:\"btn_link_nofollow\";s:2:\"no\";s:8:\"btn_icon\";s:20:\"fas fa-user-graduate\";s:14:\"btn_duo_color1\";s:0:\"\";s:14:\"btn_duo_color2\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:21:\"btn_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"btn_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"btn_button_transition\";s:7:\"disable\";s:17:\"btn_border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:21:\"btn_border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:6:\"donate\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:16:\"wrap_padding_top\";s:2:\"19\";s:17:\"wrap_padding_unit\";s:2:\"px\";s:23:\"wrap_padding_top_medium\";s:0:\"\";s:24:\"wrap_padding_medium_unit\";s:2:\"px\";s:27:\"wrap_padding_top_responsive\";s:0:\"\";s:28:\"wrap_padding_responsive_unit\";s:2:\"px\";s:18:\"wrap_padding_right\";s:2:\"19\";s:25:\"wrap_padding_right_medium\";s:0:\"\";s:29:\"wrap_padding_right_responsive\";s:0:\"\";s:19:\"wrap_padding_bottom\";s:2:\"19\";s:26:\"wrap_padding_bottom_medium\";s:0:\"\";s:30:\"wrap_padding_bottom_responsive\";s:0:\"\";s:17:\"wrap_padding_left\";s:2:\"19\";s:24:\"wrap_padding_left_medium\";s:0:\"\";s:28:\"wrap_padding_left_responsive\";s:0:\"\";s:22:\"btn_padding_top_medium\";s:0:\"\";s:26:\"btn_padding_top_responsive\";s:0:\"\";s:24:\"btn_padding_right_medium\";s:0:\"\";s:28:\"btn_padding_right_responsive\";s:0:\"\";s:25:\"btn_padding_bottom_medium\";s:0:\"\";s:29:\"btn_padding_bottom_responsive\";s:0:\"\";s:23:\"btn_padding_left_medium\";s:0:\"\";s:27:\"btn_padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:3:\"cta\";s:11:\"connections\";a:12:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"title_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:8:\"btn_text\";s:0:\"\";s:8:\"btn_link\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:22:\"btn_border_hover_color\";s:0:\"\";}s:15:\"btn_link-search\";s:0:\"\";s:24:\"flrich1581028382968_text\";s:0:\"\";s:25:\"as_values_btn_link-search\";s:0:\"\";s:24:\"flrich1581028740781_text\";s:0:\"\";s:24:\"flrich1581028867231_text\";s:0:\"\";s:24:\"flrich1581029256280_text\";s:0:\"\";s:24:\"flrich1581029501115_text\";s:0:\"\";s:24:\"flrich1581029719309_text\";s:0:\"\";s:24:\"flrich1581029992142_text\";s:0:\"\";s:24:\"flrich1581095090626_text\";s:0:\"\";s:24:\"flrich1581112719187_text\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_padding_top\";s:0:\"\";s:18:\"btn_padding_bottom\";s:0:\"\";s:16:\"btn_padding_left\";s:0:\"\";s:17:\"btn_padding_right\";s:0:\"\";s:14:\"btn_typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:10:\"btn_border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:22:\"btn_border_hover_color\";s:0:\"\";}}}'),(877,143,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:28:\".donate h3 {color: white;}\r\n\";s:2:\"js\";s:0:\"\";}'); INSERT INTO `wp_postmeta` VALUES (884,144,'_fl_builder_data','a:23:{s:13:\"5defa442b79ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442b79ad\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa442e54dc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e54dc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa442b79ad\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa442e91cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e91cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"73.03\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa4487c019\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa4487c019\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"26.97\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa46682ac2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa46682ac2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa442e91cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:1688:\"<h2 style=\"text-align: left;\">Investment & Impact</h2>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">Replenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”</span>\n\n<span style=\"font-size: 16px; color: #808080;\">Because the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:</span>\n<ul>\n <li><span style=\"font-size: 16px; color: #808080;\">Unusual Assets (such as a vehicle, work of art, or real estate),</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Wills or Trust Bequests,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Charitable Gift Annuities,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">IRA Rollover Gifts,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Appreciated Securities,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">The Gift of Life Insurance, and</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">A Charitable Remainder Trust.</span></li>\n</ul>\n<span style=\"font-size: 16px; color: #808080;\">Contributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986280828_text\";s:0:\"\";s:24:\"flrich1580160915873_text\";s:0:\"\";s:24:\"flrich1580160994089_text\";s:0:\"\";s:24:\"flrich1580161344480_text\";s:0:\"\";s:24:\"flrich1581095498524_text\";s:0:\"\";s:24:\"flrich1581095786968_text\";s:0:\"\";s:24:\"flrich1581096033906_text\";s:0:\"\";s:24:\"flrich1581096127044_text\";s:0:\"\";s:24:\"flrich1581096139577_text\";s:0:\"\";}}s:13:\"5defa49e863ae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa49e863ae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa4487c019\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"14\";s:9:\"photo_src\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"78\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:14;s:5:\"title\";s:33:\"Browne_Henriette_-_A_Girl_Writing\";s:8:\"filename\";s:37:\"Browne_Henriette_-_A_Girl_Writing.jpg\";s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:4:\"link\";s:68:\"http://gwendowment.org/wordpress1/browne_henriette_-_a_girl_writing/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:33:\"browne_henriette_-_a_girl_writing\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316922000;s:8:\"modified\";d:1575316922000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"cbfdbac09b\";s:6:\"delete\";s:10:\"f6d9112811\";s:4:\"edit\";s:10:\"0c52ac4872\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=14&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1164538;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:235;s:5:\"width\";i:300;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-300x235.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:803;s:5:\"width\";i:1024;s:3:\"url\";s:107:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-1024x803.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa6476da2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6476da2f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"280\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa64780adc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa64780adc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6476da2f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa647847cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa647847cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa64780adc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa68337135\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68337135\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"670\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6834ded1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6834ded1\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa68337135\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa68351bc0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68351bc0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6834ded1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-50\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa692aebae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa692aebae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa68351bc0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:4:\"text\";s:290:\"<p style=\"text-align: center;\"><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i>\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986837297_text\";s:0:\"\";s:24:\"flrich1575986864207_text\";s:0:\"\";s:24:\"flrich1575987018674_text\";s:0:\"\";s:24:\"flrich1580161859153_text\";s:0:\"\";}}s:13:\"5defa6c87a58b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c87a58b\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:4;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:3:\"890\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6c88d635\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c88d635\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6c87a58b\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa6c891324\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c891324\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:36.850000000000001;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa6c895012\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c895012\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"63.15\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"60\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa6db0420a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6db0420a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c891324\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"15\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:15;s:5:\"title\";s:9:\"Eli_Broad\";s:8:\"filename\";s:13:\"Eli_Broad.jpg\";s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:4:\"link\";s:44:\"http://gwendowment.org/wordpress1/eli_broad/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:9:\"eli_broad\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316931000;s:8:\"modified\";d:1575316931000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"97e2e11f96\";s:6:\"delete\";s:10:\"bb92a16204\";s:4:\"edit\";s:10:\"3db9e3add6\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=15&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:9338;s:21:\"filesizeHumanReadable\";s:4:\"9 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:202;s:5:\"width\";i:300;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa704c89ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa704c89ba\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c895012\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:282:\"<span style=\"font-size: 14px; color: #808080;\">“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.”\n\n<span style=\"font-size:14px; color:#808080;\">- Eli Broad </span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986951424_text\";s:0:\"\";s:24:\"flrich1575987255360_text\";s:0:\"\";s:24:\"flrich1580161890254_text\";s:0:\"\";s:24:\"flrich1580161913017_text\";s:0:\"\";s:24:\"flrich1581100570325_text\";s:0:\"\";}}s:13:\"5e2f5808dc420\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5808dc420\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"946\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f580a09fdd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a09fdd\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5808dc420\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f580a0dccc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a0dccc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f580a09fdd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f58221b035\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f58221b035\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f580a0dccc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:4:\"text\";s:71:\"<h2 style=\"text-align: left;\"></h2>\n<h2 style=\"text-align: left;\"></h2>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:2:\"20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580161062185_text\";s:0:\"\";s:24:\"flrich1580161098815_text\";s:0:\"\";s:24:\"flrich1580161168623_text\";s:0:\"\";s:24:\"flrich1580161293055_text\";s:0:\"\";s:24:\"flrich1580161327619_text\";s:0:\"\";s:24:\"flrich1580161425665_text\";s:0:\"\";s:24:\"flrich1580161503018_text\";s:0:\"\";s:24:\"flrich1581095355305_text\";s:0:\"\";s:24:\"flrich1581095487519_text\";s:0:\"\";s:24:\"flrich1581095911342_text\";s:0:\"\";s:24:\"flrich1581096025954_text\";s:0:\"\";}}}'),(885,144,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(889,145,'_fl_builder_data','a:11:{s:13:\"5e330b418d386\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b418d386\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1114\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b4191075\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4191075\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e330b418d386\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e330b4194d65\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4194d65\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e330b4191075\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b666b520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b666b520\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e330b4194d65\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":55:{s:4:\"text\";s:1915:\"<h2>Education – The Birthright of Every Child</h2>\n\n<hr />\n\n<img class=\"size-full wp-image-83 alignright\" src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" />\n\n<span style=\"color: #808080; font-size: 18px;\">Every boy and girl born under heaven, of whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">The very best schools understand that enabling this wonderful process—or this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.” </span>\n\n<span style=\"font-size: 18px; color: #808080;\">Faithfully,\nT. Robinson Ahlstrom - Chairman</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580403560441_text\";s:0:\"\";s:24:\"flrich1580403643677_text\";s:0:\"\";s:24:\"flrich1580403672359_text\";s:0:\"\";s:24:\"flrich1580404810052_text\";s:0:\"\";s:24:\"flrich1580405135309_text\";s:0:\"\";s:24:\"flrich1580405328584_text\";s:0:\"\";s:24:\"flrich1580406445376_text\";s:0:\"\";s:24:\"flrich1580406501486_text\";s:0:\"\";s:24:\"flrich1580406777884_text\";s:0:\"\";s:24:\"flrich1581026176694_text\";s:0:\"\";s:24:\"flrich1581026343922_text\";s:0:\"\";s:24:\"flrich1581026426115_text\";s:0:\"\";s:24:\"flrich1581026583916_text\";s:0:\"\";s:24:\"flrich1581026792428_text\";s:0:\"\";s:24:\"flrich1581027065631_text\";s:0:\"\";s:24:\"flrich1581027126736_text\";s:0:\"\";s:24:\"flrich1581027239411_text\";s:0:\"\";s:24:\"flrich1581028280748_text\";s:0:\"\";s:24:\"flrich1581029071269_text\";s:0:\"\";s:24:\"flrich1581030577877_text\";s:0:\"\";s:24:\"flrich1581030622674_text\";s:0:\"\";s:24:\"flrich1581030759972_text\";s:0:\"\";s:24:\"flrich1581113566985_text\";s:0:\"\";}}s:13:\"5e3c90b5d1e4c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d1e4c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"F5F2FD\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:1:\"2\";s:9:\"top_right\";s:1:\"2\";s:11:\"bottom_left\";s:1:\"2\";s:12:\"bottom_right\";s:1:\"2\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c90b5d98d8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d98d8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d1e4c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c90b5d9c57\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d9c57\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c90b5d98d8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c919a5c069\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c919a5c069\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:4:\"text\";s:152:\"<h4>\"Give children in need a chance at the very best education through GW Scholars Fund and help them become the people that God meant them to be.\"</h4>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1581027740534_text\";s:0:\"\";}}s:13:\"5e3c93e26e819\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26e819\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c93e26eb00\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26eb00\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c93e26e819\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c941c545de\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c941c545de\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c93e26eb00\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":104:{s:5:\"title\";s:10:\"Donate Now\";s:9:\"title_tag\";s:2:\"h3\";s:4:\"text\";s:132:\"<span style=\"font-size: 16px; color: #ffffff;\">Because a great education, full of wonder and awe, is the birthright of all. </span>\";s:6:\"layout\";s:6:\"inline\";s:8:\"bg_color\";s:6:\"4b5887\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:9:\"alignment\";s:6:\"center\";s:11:\"title_color\";s:0:\"\";s:16:\"title_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:23:\"title_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:27:\"title_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:22:\"text_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:26:\"text_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"btn_text\";s:6:\"Donate\";s:8:\"btn_link\";s:52:\"http://gwendowment.org/wordpress1/investment-impact/\";s:15:\"btn_link_target\";s:5:\"_self\";s:17:\"btn_link_nofollow\";s:2:\"no\";s:8:\"btn_icon\";s:20:\"fas fa-user-graduate\";s:14:\"btn_duo_color1\";s:0:\"\";s:14:\"btn_duo_color2\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:21:\"btn_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"btn_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"btn_button_transition\";s:7:\"disable\";s:17:\"btn_border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:21:\"btn_border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:6:\"donate\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:16:\"wrap_padding_top\";s:2:\"19\";s:17:\"wrap_padding_unit\";s:2:\"px\";s:23:\"wrap_padding_top_medium\";s:0:\"\";s:24:\"wrap_padding_medium_unit\";s:2:\"px\";s:27:\"wrap_padding_top_responsive\";s:0:\"\";s:28:\"wrap_padding_responsive_unit\";s:2:\"px\";s:18:\"wrap_padding_right\";s:2:\"19\";s:25:\"wrap_padding_right_medium\";s:0:\"\";s:29:\"wrap_padding_right_responsive\";s:0:\"\";s:19:\"wrap_padding_bottom\";s:2:\"19\";s:26:\"wrap_padding_bottom_medium\";s:0:\"\";s:30:\"wrap_padding_bottom_responsive\";s:0:\"\";s:17:\"wrap_padding_left\";s:2:\"19\";s:24:\"wrap_padding_left_medium\";s:0:\"\";s:28:\"wrap_padding_left_responsive\";s:0:\"\";s:22:\"btn_padding_top_medium\";s:0:\"\";s:26:\"btn_padding_top_responsive\";s:0:\"\";s:24:\"btn_padding_right_medium\";s:0:\"\";s:28:\"btn_padding_right_responsive\";s:0:\"\";s:25:\"btn_padding_bottom_medium\";s:0:\"\";s:29:\"btn_padding_bottom_responsive\";s:0:\"\";s:23:\"btn_padding_left_medium\";s:0:\"\";s:27:\"btn_padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:3:\"cta\";s:11:\"connections\";a:12:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"title_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:8:\"btn_text\";s:0:\"\";s:8:\"btn_link\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:22:\"btn_border_hover_color\";s:0:\"\";}s:15:\"btn_link-search\";s:0:\"\";s:24:\"flrich1581028382968_text\";s:0:\"\";s:25:\"as_values_btn_link-search\";s:0:\"\";s:24:\"flrich1581028740781_text\";s:0:\"\";s:24:\"flrich1581028867231_text\";s:0:\"\";s:24:\"flrich1581029256280_text\";s:0:\"\";s:24:\"flrich1581029501115_text\";s:0:\"\";s:24:\"flrich1581029719309_text\";s:0:\"\";s:24:\"flrich1581029992142_text\";s:0:\"\";s:24:\"flrich1581095090626_text\";s:0:\"\";s:24:\"flrich1581112719187_text\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_padding_top\";s:0:\"\";s:18:\"btn_padding_bottom\";s:0:\"\";s:16:\"btn_padding_left\";s:0:\"\";s:17:\"btn_padding_right\";s:0:\"\";s:14:\"btn_typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:10:\"btn_border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:22:\"btn_border_hover_color\";s:0:\"\";}}}'),(890,145,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:28:\".donate h3 {color: white;}\r\n\";s:2:\"js\";s:0:\"\";}'),(905,146,'_fl_builder_data','a:16:{s:13:\"5e3c4e59c908e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c908e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":142:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c4e59c9099\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c9099\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c908e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90a0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c9099\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"10\";s:9:\"top_right\";s:2:\"10\";s:11:\"bottom_left\";s:2:\"10\";s:12:\"bottom_right\";s:2:\"10\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90a9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":73:{s:4:\"text\";s:12:\"Find out how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:59:\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"duo_color1\";s:0:\"\";s:10:\"duo_color2\";s:0:\"\";s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c4e59c90ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90ad\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c90ad\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:3:\"100\";s:15:\"size_responsive\";s:3:\"100\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"32\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90b2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":75:{s:4:\"text\";s:156:\"<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 45px;\"><em>Discover and develop genius buried in poverty.</em></span></p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"170\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";s:24:\"flrich1581011019155_text\";s:0:\"\";s:24:\"flrich1581011050367_text\";s:0:\"\";s:24:\"flrich1581013921071_text\";s:0:\"\";s:24:\"flrich1581013971763_text\";s:0:\"\";s:24:\"flrich1581024806923_text\";s:0:\"\";s:24:\"flrich1581024846716_text\";s:0:\"\";s:24:\"flrich1581024987925_text\";s:0:\"\";s:24:\"flrich1581025004526_text\";s:0:\"\";s:24:\"flrich1581031573330_text\";s:0:\"\";s:24:\"flrich1581031699580_text\";s:0:\"\";s:24:\"flrich1581031805420_text\";s:0:\"\";s:24:\"flrich1581031918231_text\";s:0:\"\";s:24:\"flrich1581033525614_text\";s:0:\"\";s:24:\"flrich1581033650175_text\";s:0:\"\";s:24:\"flrich1581033842313_text\";s:0:\"\";s:24:\"flrich1581033948047_text\";s:0:\"\";s:24:\"flrich1581034131482_text\";s:0:\"\";s:24:\"flrich1581034160102_text\";s:0:\"\";s:24:\"flrich1581034416371_text\";s:0:\"\";s:24:\"flrich1581099007208_text\";s:0:\"\";s:24:\"flrich1581099115892_text\";s:0:\"\";s:24:\"flrich1581099720891_text\";s:0:\"\";s:24:\"flrich1581100055532_text\";s:0:\"\";s:24:\"flrich1581100276169_text\";s:0:\"\";s:24:\"flrich1581114371000_text\";s:0:\"\";s:24:\"flrich1581114924101_text\";s:0:\"\";}}s:13:\"5e3c509278f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c509278f9f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:3:\"150\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5092894d9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5092894d9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c50928988a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c50928988a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:43.93;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c51e8b9546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c51e8b9546\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c50928988a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"cccccc\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b286c8c576\";s:6:\"delete\";s:10:\"5134a89e91\";s:4:\"edit\";s:10:\"99ffdd8e1c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e3c523ae1fcb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c523ae1fcb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"56.07\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:6:\"ffffff\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"17\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c525fdd3b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c525fdd3b2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c523ae1fcb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:12:\"mobile_title\";s:4:\"Menu\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"f4f4f4\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5e3c54857e283\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e283\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c54857e636\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e636\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c54857e283\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-40\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c54857e08a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e08a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c54857e636\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"39\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(906,146,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:56:\".fl-page-header{display: none;}\r\n.fl-menu {body: white;}\";s:2:\"js\";s:0:\"\";}'),(913,147,'_fl_builder_data','a:16:{s:13:\"5e3c4e59c908e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c908e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":142:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c4e59c9099\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c9099\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c908e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90a0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c9099\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"10\";s:9:\"top_right\";s:2:\"10\";s:11:\"bottom_left\";s:2:\"10\";s:12:\"bottom_right\";s:2:\"10\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90a9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":73:{s:4:\"text\";s:12:\"Find out how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:59:\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"duo_color1\";s:0:\"\";s:10:\"duo_color2\";s:0:\"\";s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c4e59c90ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90ad\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c90ad\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:3:\"100\";s:15:\"size_responsive\";s:3:\"100\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"32\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90b2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":77:{s:4:\"text\";s:156:\"<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 45px;\"><em>Discover and develop genius buried in poverty.</em></span></p>\";s:5:\"color\";s:6:\"e8e8e8\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"190\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";s:24:\"flrich1581011019155_text\";s:0:\"\";s:24:\"flrich1581011050367_text\";s:0:\"\";s:24:\"flrich1581013921071_text\";s:0:\"\";s:24:\"flrich1581013971763_text\";s:0:\"\";s:24:\"flrich1581024806923_text\";s:0:\"\";s:24:\"flrich1581024846716_text\";s:0:\"\";s:24:\"flrich1581024987925_text\";s:0:\"\";s:24:\"flrich1581025004526_text\";s:0:\"\";s:24:\"flrich1581031573330_text\";s:0:\"\";s:24:\"flrich1581031699580_text\";s:0:\"\";s:24:\"flrich1581031805420_text\";s:0:\"\";s:24:\"flrich1581031918231_text\";s:0:\"\";s:24:\"flrich1581033525614_text\";s:0:\"\";s:24:\"flrich1581033650175_text\";s:0:\"\";s:24:\"flrich1581033842313_text\";s:0:\"\";s:24:\"flrich1581033948047_text\";s:0:\"\";s:24:\"flrich1581034131482_text\";s:0:\"\";s:24:\"flrich1581034160102_text\";s:0:\"\";s:24:\"flrich1581034416371_text\";s:0:\"\";s:24:\"flrich1581099007208_text\";s:0:\"\";s:24:\"flrich1581099115892_text\";s:0:\"\";s:24:\"flrich1581099720891_text\";s:0:\"\";s:24:\"flrich1581100055532_text\";s:0:\"\";s:24:\"flrich1581100276169_text\";s:0:\"\";s:24:\"flrich1581114371000_text\";s:0:\"\";s:24:\"flrich1581114924101_text\";s:0:\"\";s:24:\"flrich1581115222012_text\";s:0:\"\";s:24:\"flrich1581115259466_text\";s:0:\"\";}}s:13:\"5e3c509278f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c509278f9f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:3:\"150\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5092894d9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5092894d9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c50928988a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c50928988a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:43.93;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c51e8b9546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c51e8b9546\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c50928988a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"cccccc\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b286c8c576\";s:6:\"delete\";s:10:\"5134a89e91\";s:4:\"edit\";s:10:\"99ffdd8e1c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e3c523ae1fcb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c523ae1fcb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"56.07\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:6:\"ffffff\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"17\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c525fdd3b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c525fdd3b2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c523ae1fcb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:12:\"mobile_title\";s:4:\"Menu\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"f4f4f4\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5e3c54857e283\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e283\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c54857e636\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e636\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c54857e283\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-40\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c54857e08a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e08a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c54857e636\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"39\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(914,147,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:56:\".fl-page-header{display: none;}\r\n.fl-menu {body: white;}\";s:2:\"js\";s:0:\"\";}'),(918,148,'_fl_builder_data','a:11:{s:13:\"5e330b418d386\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b418d386\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1114\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b4191075\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4191075\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e330b418d386\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e330b4194d65\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b4194d65\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e330b4191075\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e330b666b520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e330b666b520\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e330b4194d65\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":56:{s:4:\"text\";s:1912:\"<h2>Education – The Birthright of Every Child</h2>\n\n<hr />\n\n<img class=\"size-full wp-image-83 alignright\" src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" />\n\n<span style=\"color: #808080; font-size: 18px;\">Every boy and girl born under heaven, of whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">The very best schools understand that enabling this wonderful process—this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</span>\n\n<span style=\"font-size: 18px; color: #808080;\">We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.” </span>\n\n<span style=\"font-size: 18px; color: #808080;\">Faithfully,\nT. Robinson Ahlstrom - Chairman</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580403560441_text\";s:0:\"\";s:24:\"flrich1580403643677_text\";s:0:\"\";s:24:\"flrich1580403672359_text\";s:0:\"\";s:24:\"flrich1580404810052_text\";s:0:\"\";s:24:\"flrich1580405135309_text\";s:0:\"\";s:24:\"flrich1580405328584_text\";s:0:\"\";s:24:\"flrich1580406445376_text\";s:0:\"\";s:24:\"flrich1580406501486_text\";s:0:\"\";s:24:\"flrich1580406777884_text\";s:0:\"\";s:24:\"flrich1581026176694_text\";s:0:\"\";s:24:\"flrich1581026343922_text\";s:0:\"\";s:24:\"flrich1581026426115_text\";s:0:\"\";s:24:\"flrich1581026583916_text\";s:0:\"\";s:24:\"flrich1581026792428_text\";s:0:\"\";s:24:\"flrich1581027065631_text\";s:0:\"\";s:24:\"flrich1581027126736_text\";s:0:\"\";s:24:\"flrich1581027239411_text\";s:0:\"\";s:24:\"flrich1581028280748_text\";s:0:\"\";s:24:\"flrich1581029071269_text\";s:0:\"\";s:24:\"flrich1581030577877_text\";s:0:\"\";s:24:\"flrich1581030622674_text\";s:0:\"\";s:24:\"flrich1581030759972_text\";s:0:\"\";s:24:\"flrich1581113566985_text\";s:0:\"\";s:24:\"flrich1581115571537_text\";s:0:\"\";}}s:13:\"5e3c90b5d1e4c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d1e4c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"F5F2FD\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:1:\"2\";s:9:\"top_right\";s:1:\"2\";s:11:\"bottom_left\";s:1:\"2\";s:12:\"bottom_right\";s:1:\"2\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c90b5d98d8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d98d8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d1e4c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c90b5d9c57\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c90b5d9c57\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c90b5d98d8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c919a5c069\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c919a5c069\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:4:\"text\";s:152:\"<h4>\"Give children in need a chance at the very best education through GW Scholars Fund and help them become the people that God meant them to be.\"</h4>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1581027740534_text\";s:0:\"\";}}s:13:\"5e3c93e26e819\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26e819\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c90b5d9c57\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c93e26eb00\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c93e26eb00\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c93e26e819\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c941c545de\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c941c545de\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c93e26eb00\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":104:{s:5:\"title\";s:10:\"Donate Now\";s:9:\"title_tag\";s:2:\"h3\";s:4:\"text\";s:132:\"<span style=\"font-size: 16px; color: #ffffff;\">Because a great education, full of wonder and awe, is the birthright of all. </span>\";s:6:\"layout\";s:6:\"inline\";s:8:\"bg_color\";s:6:\"4b5887\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:9:\"alignment\";s:6:\"center\";s:11:\"title_color\";s:0:\"\";s:16:\"title_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:23:\"title_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:27:\"title_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:22:\"text_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:26:\"text_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:8:\"btn_text\";s:6:\"Donate\";s:8:\"btn_link\";s:52:\"http://gwendowment.org/wordpress1/investment-impact/\";s:15:\"btn_link_target\";s:5:\"_self\";s:17:\"btn_link_nofollow\";s:2:\"no\";s:8:\"btn_icon\";s:20:\"fas fa-user-graduate\";s:14:\"btn_duo_color1\";s:0:\"\";s:14:\"btn_duo_color2\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:21:\"btn_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"btn_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"btn_button_transition\";s:7:\"disable\";s:17:\"btn_border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:21:\"btn_border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:6:\"donate\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:16:\"wrap_padding_top\";s:2:\"19\";s:17:\"wrap_padding_unit\";s:2:\"px\";s:23:\"wrap_padding_top_medium\";s:0:\"\";s:24:\"wrap_padding_medium_unit\";s:2:\"px\";s:27:\"wrap_padding_top_responsive\";s:0:\"\";s:28:\"wrap_padding_responsive_unit\";s:2:\"px\";s:18:\"wrap_padding_right\";s:2:\"19\";s:25:\"wrap_padding_right_medium\";s:0:\"\";s:29:\"wrap_padding_right_responsive\";s:0:\"\";s:19:\"wrap_padding_bottom\";s:2:\"19\";s:26:\"wrap_padding_bottom_medium\";s:0:\"\";s:30:\"wrap_padding_bottom_responsive\";s:0:\"\";s:17:\"wrap_padding_left\";s:2:\"19\";s:24:\"wrap_padding_left_medium\";s:0:\"\";s:28:\"wrap_padding_left_responsive\";s:0:\"\";s:22:\"btn_padding_top_medium\";s:0:\"\";s:26:\"btn_padding_top_responsive\";s:0:\"\";s:24:\"btn_padding_right_medium\";s:0:\"\";s:28:\"btn_padding_right_responsive\";s:0:\"\";s:25:\"btn_padding_bottom_medium\";s:0:\"\";s:29:\"btn_padding_bottom_responsive\";s:0:\"\";s:23:\"btn_padding_left_medium\";s:0:\"\";s:27:\"btn_padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:3:\"cta\";s:11:\"connections\";a:12:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"title_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:8:\"btn_text\";s:0:\"\";s:8:\"btn_link\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:22:\"btn_border_hover_color\";s:0:\"\";}s:15:\"btn_link-search\";s:0:\"\";s:24:\"flrich1581028382968_text\";s:0:\"\";s:25:\"as_values_btn_link-search\";s:0:\"\";s:24:\"flrich1581028740781_text\";s:0:\"\";s:24:\"flrich1581028867231_text\";s:0:\"\";s:24:\"flrich1581029256280_text\";s:0:\"\";s:24:\"flrich1581029501115_text\";s:0:\"\";s:24:\"flrich1581029719309_text\";s:0:\"\";s:24:\"flrich1581029992142_text\";s:0:\"\";s:24:\"flrich1581095090626_text\";s:0:\"\";s:24:\"flrich1581112719187_text\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_padding_top\";s:0:\"\";s:18:\"btn_padding_bottom\";s:0:\"\";s:16:\"btn_padding_left\";s:0:\"\";s:17:\"btn_padding_right\";s:0:\"\";s:14:\"btn_typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:10:\"btn_border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:22:\"btn_border_hover_color\";s:0:\"\";}}}'),(919,148,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:28:\".donate h3 {color: white;}\r\n\";s:2:\"js\";s:0:\"\";}'),(922,110,'_fl_builder_history_position','0'),(923,110,'_fl_builder_history_state_0','a:4:{s:5:\"label\";s:13:\"draft_created\";s:11:\"module_type\";N;s:5:\"nodes\";a:0:{}s:8:\"settings\";a:2:{s:6:\"global\";O:8:\"stdClass\":44:{s:20:\"show_default_heading\";s:1:\"0\";s:24:\"default_heading_selector\";s:15:\".fl-post-header\";s:11:\"row_margins\";s:1:\"0\";s:16:\"row_margins_unit\";s:2:\"px\";s:18:\"row_margins_medium\";s:0:\"\";s:23:\"row_margins_medium_unit\";s:2:\"px\";s:22:\"row_margins_responsive\";s:0:\"\";s:27:\"row_margins_responsive_unit\";s:2:\"px\";s:11:\"row_padding\";s:2:\"20\";s:16:\"row_padding_unit\";s:2:\"px\";s:18:\"row_padding_medium\";s:0:\"\";s:23:\"row_padding_medium_unit\";s:2:\"px\";s:22:\"row_padding_responsive\";s:0:\"\";s:27:\"row_padding_responsive_unit\";s:2:\"px\";s:9:\"row_width\";s:4:\"1100\";s:14:\"row_width_unit\";s:2:\"px\";s:17:\"row_width_default\";s:5:\"fixed\";s:25:\"row_content_width_default\";s:5:\"fixed\";s:14:\"column_margins\";s:0:\"\";s:19:\"column_margins_unit\";s:2:\"px\";s:21:\"column_margins_medium\";s:0:\"\";s:26:\"column_margins_medium_unit\";s:2:\"px\";s:25:\"column_margins_responsive\";s:0:\"\";s:30:\"column_margins_responsive_unit\";s:2:\"px\";s:14:\"column_padding\";s:0:\"\";s:19:\"column_padding_unit\";s:2:\"px\";s:21:\"column_padding_medium\";s:0:\"\";s:26:\"column_padding_medium_unit\";s:2:\"px\";s:25:\"column_padding_responsive\";s:0:\"\";s:30:\"column_padding_responsive_unit\";s:2:\"px\";s:14:\"module_margins\";s:2:\"20\";s:19:\"module_margins_unit\";s:2:\"px\";s:21:\"module_margins_medium\";s:0:\"\";s:26:\"module_margins_medium_unit\";s:2:\"px\";s:25:\"module_margins_responsive\";s:0:\"\";s:30:\"module_margins_responsive_unit\";s:2:\"px\";s:18:\"responsive_enabled\";s:1:\"1\";s:12:\"auto_spacing\";s:1:\"1\";s:17:\"medium_breakpoint\";s:3:\"992\";s:21:\"responsive_breakpoint\";s:3:\"768\";s:24:\"responsive_col_max_width\";s:1:\"1\";s:24:\"responsive_base_fontsize\";s:2:\"16\";s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}s:6:\"layout\";O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}}}'),(924,110,'_fl_builder_draft','a:8:{s:13:\"5e3c4d57d0a78\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a78\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":142:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c4d57d0a82\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a82\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4d57d0a78\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4d57d0a88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4d57d0a82\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"cccccc\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:2:\"50\";s:12:\"bottom_right\";s:2:\"50\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-19\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"49\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4d57d0a8d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a8d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4d57d0a88\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":57:{s:4:\"text\";s:109:\"<div style=\"background-color: lightgray;\">\n\n<strong>The George Washington Scholars Endowment</strong>\n\n</div>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";s:24:\"flrich1581008407534_text\";s:0:\"\";s:24:\"flrich1581008461545_text\";s:0:\"\";s:24:\"flrich1581008620399_text\";s:0:\"\";s:24:\"flrich1581008644626_text\";s:0:\"\";}}s:13:\"5e3c4d57d0a91\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a91\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4d57d0a88\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":73:{s:4:\"text\";s:23:\"Inspire Young Minds Now\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"duo_color1\";s:0:\"\";s:10:\"duo_color2\";s:0:\"\";s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c4d57d0a96\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a96\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4d57d0a88\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4d57d0a9a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a9a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4d57d0a96\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4d57d0a9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4d57d0a9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4d57d0a9a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":49:{s:4:\"text\";s:186:\"<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 40px;\"><span style=\"font-size: 60px;\">Discover and develop genius buried in poverty</span> </span></p>\";s:5:\"color\";s:6:\"424242\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Yesteryear\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"20\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";}}}'),(925,110,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:31:\".fl-page-header{display: none;}\";s:2:\"js\";s:0:\"\";}'),(926,110,'_edit_lock','1581699253:1'),(927,106,'_fl_builder_history_position','0'),(928,106,'_fl_builder_history_state_0','a:4:{s:5:\"label\";s:13:\"draft_created\";s:11:\"module_type\";N;s:5:\"nodes\";a:0:{}s:8:\"settings\";a:2:{s:6:\"global\";O:8:\"stdClass\":44:{s:20:\"show_default_heading\";s:1:\"0\";s:24:\"default_heading_selector\";s:15:\".fl-post-header\";s:11:\"row_margins\";s:1:\"0\";s:16:\"row_margins_unit\";s:2:\"px\";s:18:\"row_margins_medium\";s:0:\"\";s:23:\"row_margins_medium_unit\";s:2:\"px\";s:22:\"row_margins_responsive\";s:0:\"\";s:27:\"row_margins_responsive_unit\";s:2:\"px\";s:11:\"row_padding\";s:2:\"20\";s:16:\"row_padding_unit\";s:2:\"px\";s:18:\"row_padding_medium\";s:0:\"\";s:23:\"row_padding_medium_unit\";s:2:\"px\";s:22:\"row_padding_responsive\";s:0:\"\";s:27:\"row_padding_responsive_unit\";s:2:\"px\";s:9:\"row_width\";s:4:\"1100\";s:14:\"row_width_unit\";s:2:\"px\";s:17:\"row_width_default\";s:5:\"fixed\";s:25:\"row_content_width_default\";s:5:\"fixed\";s:14:\"column_margins\";s:0:\"\";s:19:\"column_margins_unit\";s:2:\"px\";s:21:\"column_margins_medium\";s:0:\"\";s:26:\"column_margins_medium_unit\";s:2:\"px\";s:25:\"column_margins_responsive\";s:0:\"\";s:30:\"column_margins_responsive_unit\";s:2:\"px\";s:14:\"column_padding\";s:0:\"\";s:19:\"column_padding_unit\";s:2:\"px\";s:21:\"column_padding_medium\";s:0:\"\";s:26:\"column_padding_medium_unit\";s:2:\"px\";s:25:\"column_padding_responsive\";s:0:\"\";s:30:\"column_padding_responsive_unit\";s:2:\"px\";s:14:\"module_margins\";s:2:\"20\";s:19:\"module_margins_unit\";s:2:\"px\";s:21:\"module_margins_medium\";s:0:\"\";s:26:\"module_margins_medium_unit\";s:2:\"px\";s:25:\"module_margins_responsive\";s:0:\"\";s:30:\"module_margins_responsive_unit\";s:2:\"px\";s:18:\"responsive_enabled\";s:1:\"1\";s:12:\"auto_spacing\";s:1:\"1\";s:17:\"medium_breakpoint\";s:3:\"992\";s:21:\"responsive_breakpoint\";s:3:\"768\";s:24:\"responsive_col_max_width\";s:1:\"1\";s:24:\"responsive_base_fontsize\";s:2:\"16\";s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}s:6:\"layout\";O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}}}'),(929,106,'_fl_builder_draft','a:9:{s:13:\"5e3c3ab6cdf4f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf4f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":142:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c3ab6cdf59\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf59\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c3ab6cdf4f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c3ab6cdf60\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf60\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c3ab6cdf59\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:22:\"rgba(204,204,204,0.59)\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c3ab6cdf65\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf65\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3ab6cdf60\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":53:{s:4:\"text\";s:92:\"<p style=\"text-align: center;\"><strong>The George Washington Scholars Endowment</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"70\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";}}s:13:\"5e3c3ab6cdf69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf69\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3ab6cdf60\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":73:{s:4:\"text\";s:10:\"Here\'s how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"duo_color1\";s:0:\"\";s:10:\"duo_color2\";s:0:\"\";s:8:\"bg_color\";s:6:\"4b5887\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c3ab6cdf6e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf6e\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c3ab6cdf60\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c3ab6cdf73\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf73\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c3ab6cdf6e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c3ab6cdf77\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf77\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3ab6cdf73\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:4:\"text\";s:243:\"<p style=\"text-align: center; text-decoration: underline; text-decoration-color: grey;\"><span style=\"font-size: 25px;\"><span style=\"font-size: 30px; text-decoration: underline;\">Discover and develop genius buried in poverty</span> </span></p>\";s:5:\"color\";s:6:\"2b2b2b\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:8:\"Rosarivo\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";}}s:13:\"5e3c3ab6cdf7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c3ab6cdf7c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c3ab6cdf60\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":49:{s:4:\"text\";s:56:\"<p style=\"text-align: center;\"><strong>1785</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"-30\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";s:24:\"flrich1580496686096_text\";s:0:\"\";s:24:\"flrich1580496799990_text\";s:0:\"\";s:24:\"flrich1580496880753_text\";s:0:\"\";s:24:\"flrich1580496943645_text\";s:0:\"\";s:24:\"flrich1580498969041_text\";s:0:\"\";s:24:\"flrich1580499016567_text\";s:0:\"\";s:24:\"flrich1580499353572_text\";s:0:\"\";s:24:\"flrich1580499811828_text\";s:0:\"\";}}}'),(930,106,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(931,106,'_edit_lock','1581699279:1'),(932,60,'_fl_builder_history_position','0'),(933,60,'_fl_builder_history_state_0','a:4:{s:5:\"label\";s:13:\"draft_created\";s:11:\"module_type\";N;s:5:\"nodes\";a:0:{}s:8:\"settings\";a:2:{s:6:\"global\";O:8:\"stdClass\":44:{s:20:\"show_default_heading\";s:1:\"0\";s:24:\"default_heading_selector\";s:15:\".fl-post-header\";s:11:\"row_margins\";s:1:\"0\";s:16:\"row_margins_unit\";s:2:\"px\";s:18:\"row_margins_medium\";s:0:\"\";s:23:\"row_margins_medium_unit\";s:2:\"px\";s:22:\"row_margins_responsive\";s:0:\"\";s:27:\"row_margins_responsive_unit\";s:2:\"px\";s:11:\"row_padding\";s:2:\"20\";s:16:\"row_padding_unit\";s:2:\"px\";s:18:\"row_padding_medium\";s:0:\"\";s:23:\"row_padding_medium_unit\";s:2:\"px\";s:22:\"row_padding_responsive\";s:0:\"\";s:27:\"row_padding_responsive_unit\";s:2:\"px\";s:9:\"row_width\";s:4:\"1100\";s:14:\"row_width_unit\";s:2:\"px\";s:17:\"row_width_default\";s:5:\"fixed\";s:25:\"row_content_width_default\";s:5:\"fixed\";s:14:\"column_margins\";s:0:\"\";s:19:\"column_margins_unit\";s:2:\"px\";s:21:\"column_margins_medium\";s:0:\"\";s:26:\"column_margins_medium_unit\";s:2:\"px\";s:25:\"column_margins_responsive\";s:0:\"\";s:30:\"column_margins_responsive_unit\";s:2:\"px\";s:14:\"column_padding\";s:0:\"\";s:19:\"column_padding_unit\";s:2:\"px\";s:21:\"column_padding_medium\";s:0:\"\";s:26:\"column_padding_medium_unit\";s:2:\"px\";s:25:\"column_padding_responsive\";s:0:\"\";s:30:\"column_padding_responsive_unit\";s:2:\"px\";s:14:\"module_margins\";s:2:\"20\";s:19:\"module_margins_unit\";s:2:\"px\";s:21:\"module_margins_medium\";s:0:\"\";s:26:\"module_margins_medium_unit\";s:2:\"px\";s:25:\"module_margins_responsive\";s:0:\"\";s:30:\"module_margins_responsive_unit\";s:2:\"px\";s:18:\"responsive_enabled\";s:1:\"1\";s:12:\"auto_spacing\";s:1:\"1\";s:17:\"medium_breakpoint\";s:3:\"992\";s:21:\"responsive_breakpoint\";s:3:\"768\";s:24:\"responsive_col_max_width\";s:1:\"1\";s:24:\"responsive_base_fontsize\";s:2:\"16\";s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}s:6:\"layout\";O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}}}'),(934,60,'_fl_builder_draft','a:19:{s:13:\"5debc734e5348\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc734e5348\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":143:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-24\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debc734e9037\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc734e9037\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc734e5348\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc734ecd26\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc734ecd26\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc734e9037\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5debc734f0a15\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc734f0a15\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc734ecd26\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:75:\"<p style=\"text-align: center;\">The George Washington Scholars Endowment</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";}}s:13:\"5debc735004c4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc735004c4\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc734ecd26\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5debc735041b3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc735041b3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc735004c4\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc73507ea2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc73507ea2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc735041b3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:39:\"<p style=\"text-align: center;\">1785</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"-35\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";}}s:13:\"5debc7350bb91\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7350bb91\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":140:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc7350f880\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7350f880\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc7350bb91\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc7351356e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7351356e\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc7350f880\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc7351725d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7351725d\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"2016\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debc7351af4c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7351af4c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc7351725d\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debc7351ec3b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7351ec3b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc7351af4c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"43.56\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc7352292a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7352292a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc7351af4c\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"56.44\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc73526619\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc73526619\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc7351ec3b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:51:\"http://gwendowment.org/wordpress1/?attachment_id=35\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"da576648b5\";s:6:\"delete\";s:10:\"f013f3fc82\";s:4:\"edit\";s:10:\"2112ce7592\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5debc7352a308\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7352a308\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc7352292a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:12:\"mobile_title\";s:4:\"Menu\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:13:\"medium-mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"4b5887\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5debc7352dff7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc7352dff7\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debc7351725d\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5debc73531ce6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc73531ce6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debc7352dff7\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debc735359d5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debc735359d5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debc73531ce6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(935,60,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}'),(936,88,'_fl_builder_history_position','0'),(937,88,'_fl_builder_history_state_0','a:4:{s:5:\"label\";s:13:\"draft_created\";s:11:\"module_type\";N;s:5:\"nodes\";a:9:{s:13:\"5e34749a506c6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506c6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":142:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e34749a506cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506c6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e34749a506cd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cd\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e34749a506cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:22:\"rgba(204,204,204,0.59)\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e34749a506cf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e34749a506cf\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":53:{s:4:\"text\";s:92:\"<p style=\"text-align: center;\"><strong>The George Washington Scholars Endowment</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"70\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";s:24:\"flrich1580496495623_text\";s:0:\"\";s:24:\"flrich1580496522895_text\";s:0:\"\";s:24:\"flrich1580496666735_text\";s:0:\"\";s:24:\"flrich1580496765251_text\";s:0:\"\";s:24:\"flrich1580496870647_text\";s:0:\"\";s:24:\"flrich1580496929076_text\";s:0:\"\";s:24:\"flrich1580497682547_text\";s:0:\"\";s:24:\"flrich1580498926450_text\";s:0:\"\";s:24:\"flrich1580498994124_text\";s:0:\"\";s:24:\"flrich1580499065582_text\";s:0:\"\";s:24:\"flrich1580499334005_text\";s:0:\"\";s:24:\"flrich1580499455100_text\";s:0:\"\";s:24:\"flrich1580499700557_text\";s:0:\"\";s:24:\"flrich1580499765758_text\";s:0:\"\";}}s:13:\"5e3474e1eb260\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3474e1eb260\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":73:{s:4:\"text\";s:10:\"Here\'s how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"duo_color1\";s:0:\"\";s:10:\"duo_color2\";s:0:\"\";s:8:\"bg_color\";s:6:\"4b5887\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e347561dbeb5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347561dbeb5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5e347561dc0fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347561dc0fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e347561dbeb5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e347568c2b28\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347568c2b28\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e347561dc0fe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:4:\"text\";s:243:\"<p style=\"text-align: center; text-decoration: underline; text-decoration-color: grey;\"><span style=\"font-size: 25px;\"><span style=\"font-size: 30px; text-decoration: underline;\">Discover and develop genius buried in poverty</span> </span></p>\";s:5:\"color\";s:6:\"2b2b2b\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:8:\"Rosarivo\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";}}s:13:\"5e347791d4603\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e347791d4603\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e34749a506cd\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":49:{s:4:\"text\";s:56:\"<p style=\"text-align: center;\"><strong>1785</strong></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"-30\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"20\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";s:24:\"flrich1580496686096_text\";s:0:\"\";s:24:\"flrich1580496799990_text\";s:0:\"\";s:24:\"flrich1580496880753_text\";s:0:\"\";s:24:\"flrich1580496943645_text\";s:0:\"\";s:24:\"flrich1580498969041_text\";s:0:\"\";s:24:\"flrich1580499016567_text\";s:0:\"\";s:24:\"flrich1580499353572_text\";s:0:\"\";s:24:\"flrich1580499811828_text\";s:0:\"\";}}}s:8:\"settings\";a:2:{s:6:\"global\";O:8:\"stdClass\":44:{s:20:\"show_default_heading\";s:1:\"0\";s:24:\"default_heading_selector\";s:15:\".fl-post-header\";s:11:\"row_margins\";s:1:\"0\";s:16:\"row_margins_unit\";s:2:\"px\";s:18:\"row_margins_medium\";s:0:\"\";s:23:\"row_margins_medium_unit\";s:2:\"px\";s:22:\"row_margins_responsive\";s:0:\"\";s:27:\"row_margins_responsive_unit\";s:2:\"px\";s:11:\"row_padding\";s:2:\"20\";s:16:\"row_padding_unit\";s:2:\"px\";s:18:\"row_padding_medium\";s:0:\"\";s:23:\"row_padding_medium_unit\";s:2:\"px\";s:22:\"row_padding_responsive\";s:0:\"\";s:27:\"row_padding_responsive_unit\";s:2:\"px\";s:9:\"row_width\";s:4:\"1100\";s:14:\"row_width_unit\";s:2:\"px\";s:17:\"row_width_default\";s:5:\"fixed\";s:25:\"row_content_width_default\";s:5:\"fixed\";s:14:\"column_margins\";s:0:\"\";s:19:\"column_margins_unit\";s:2:\"px\";s:21:\"column_margins_medium\";s:0:\"\";s:26:\"column_margins_medium_unit\";s:2:\"px\";s:25:\"column_margins_responsive\";s:0:\"\";s:30:\"column_margins_responsive_unit\";s:2:\"px\";s:14:\"column_padding\";s:0:\"\";s:19:\"column_padding_unit\";s:2:\"px\";s:21:\"column_padding_medium\";s:0:\"\";s:26:\"column_padding_medium_unit\";s:2:\"px\";s:25:\"column_padding_responsive\";s:0:\"\";s:30:\"column_padding_responsive_unit\";s:2:\"px\";s:14:\"module_margins\";s:2:\"20\";s:19:\"module_margins_unit\";s:2:\"px\";s:21:\"module_margins_medium\";s:0:\"\";s:26:\"module_margins_medium_unit\";s:2:\"px\";s:25:\"module_margins_responsive\";s:0:\"\";s:30:\"module_margins_responsive_unit\";s:2:\"px\";s:18:\"responsive_enabled\";s:1:\"1\";s:12:\"auto_spacing\";s:1:\"1\";s:17:\"medium_breakpoint\";s:3:\"992\";s:21:\"responsive_breakpoint\";s:3:\"768\";s:24:\"responsive_col_max_width\";s:1:\"1\";s:24:\"responsive_base_fontsize\";s:2:\"16\";s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}s:6:\"layout\";O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}}}'),(938,30,'_fl_builder_history_position','0'),(939,30,'_fl_builder_history_state_0','a:4:{s:5:\"label\";s:13:\"draft_created\";s:11:\"module_type\";N;s:5:\"nodes\";a:20:{s:13:\"5de5718ea8831\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718ea8831\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":143:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1100\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:3:\"-24\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"15\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5de5718eac520\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eac520\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718ea8831\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5de5718eb0210\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5de5718eb0210\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5de5718eac520\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":87:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5dea7c07219ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7c07219ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":39:{s:4:\"text\";s:75:\"<p style=\"text-align: center;\">The George Washington Scholars Endowment</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"42\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:6:\"center\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648265504_text\";s:0:\"\";s:24:\"flrich1575648484782_text\";s:0:\"\";s:24:\"flrich1575648886769_text\";s:0:\"\";s:24:\"flrich1575649123059_text\";s:0:\"\";s:24:\"flrich1575652930959_text\";s:0:\"\";s:24:\"flrich1575653797786_text\";s:0:\"\";s:24:\"flrich1575653939955_text\";s:0:\"\";}}s:13:\"5dea7dfcc2857\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc2857\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5de5718eb0210\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5dea7dfcc6546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7dfcc6546\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea7dfcc2857\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea7e01db280\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea7e01db280\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea7dfcc6546\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:39:\"<p style=\"text-align: center;\">1785</p>\";s:5:\"color\";s:6:\"ffffff\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:9:\"Cormorant\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"32\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"-35\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575648772111_text\";s:0:\"\";s:24:\"flrich1575648794896_text\";s:0:\"\";s:24:\"flrich1575648827446_text\";s:0:\"\";s:24:\"flrich1575648915845_text\";s:0:\"\";s:24:\"flrich1575649210579_text\";s:0:\"\";s:24:\"flrich1575652911908_text\";s:0:\"\";s:24:\"flrich1575653810549_text\";s:0:\"\";s:24:\"flrich1575653861323_text\";s:0:\"\";s:24:\"flrich1575653963910_text\";s:0:\"\";}}s:13:\"5dea8828c95a6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828c95a6\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:4:\"1888\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5dea8828d8962\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828d8962\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dea8828dc650\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828dc650\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"43.56\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8828e033f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8828e033f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dea8828d8962\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"56.44\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dea8ee6cc2e8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea8ee6cc2e8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828dc650\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:3:\"url\";s:8:\"link_url\";s:44:\"http://gwendowment.org/wordpress1/home-page/\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"6f678394e7\";s:6:\"delete\";s:10:\"ce71e00c87\";s:4:\"edit\";s:10:\"26c43ff098\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5dea94777eb4e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dea94777eb4e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dea8828e033f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:12:\"mobile_title\";s:4:\"Menu\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:13:\"medium-mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"4b5887\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5deab0904ca37\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0904ca37\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dea8828c95a6\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5deab09050726\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab09050726\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5deab0904ca37\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5deab0a26b5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5deab0a26b5a5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5deab09050726\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:3:\"-20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:3:\"-20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}s:13:\"5debd510de5ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd510de5ba\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"17\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5debd510f1663\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd510f1663\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5debd510de5ba\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5debd51101111\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd51101111\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5debd510f1663\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5debd532ae0f0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5debd532ae0f0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5debd51101111\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:3:\"-20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:3:\"-20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}s:8:\"settings\";a:2:{s:6:\"global\";O:8:\"stdClass\":44:{s:20:\"show_default_heading\";s:1:\"0\";s:24:\"default_heading_selector\";s:15:\".fl-post-header\";s:11:\"row_margins\";s:1:\"0\";s:16:\"row_margins_unit\";s:2:\"px\";s:18:\"row_margins_medium\";s:0:\"\";s:23:\"row_margins_medium_unit\";s:2:\"px\";s:22:\"row_margins_responsive\";s:0:\"\";s:27:\"row_margins_responsive_unit\";s:2:\"px\";s:11:\"row_padding\";s:2:\"20\";s:16:\"row_padding_unit\";s:2:\"px\";s:18:\"row_padding_medium\";s:0:\"\";s:23:\"row_padding_medium_unit\";s:2:\"px\";s:22:\"row_padding_responsive\";s:0:\"\";s:27:\"row_padding_responsive_unit\";s:2:\"px\";s:9:\"row_width\";s:4:\"1100\";s:14:\"row_width_unit\";s:2:\"px\";s:17:\"row_width_default\";s:5:\"fixed\";s:25:\"row_content_width_default\";s:5:\"fixed\";s:14:\"column_margins\";s:0:\"\";s:19:\"column_margins_unit\";s:2:\"px\";s:21:\"column_margins_medium\";s:0:\"\";s:26:\"column_margins_medium_unit\";s:2:\"px\";s:25:\"column_margins_responsive\";s:0:\"\";s:30:\"column_margins_responsive_unit\";s:2:\"px\";s:14:\"column_padding\";s:0:\"\";s:19:\"column_padding_unit\";s:2:\"px\";s:21:\"column_padding_medium\";s:0:\"\";s:26:\"column_padding_medium_unit\";s:2:\"px\";s:25:\"column_padding_responsive\";s:0:\"\";s:30:\"column_padding_responsive_unit\";s:2:\"px\";s:14:\"module_margins\";s:2:\"20\";s:19:\"module_margins_unit\";s:2:\"px\";s:21:\"module_margins_medium\";s:0:\"\";s:26:\"module_margins_medium_unit\";s:2:\"px\";s:25:\"module_margins_responsive\";s:0:\"\";s:30:\"module_margins_responsive_unit\";s:2:\"px\";s:18:\"responsive_enabled\";s:1:\"1\";s:12:\"auto_spacing\";s:1:\"1\";s:17:\"medium_breakpoint\";s:3:\"992\";s:21:\"responsive_breakpoint\";s:3:\"768\";s:24:\"responsive_col_max_width\";s:1:\"1\";s:24:\"responsive_base_fontsize\";s:2:\"16\";s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}s:6:\"layout\";O:8:\"stdClass\":2:{s:3:\"css\";s:37:\"body {\r\n background-color: #F5F2FD;}\";s:2:\"js\";s:0:\"\";}}}'),(940,116,'_fl_builder_history_position','0'),(941,116,'_fl_builder_history_state_0','a:4:{s:5:\"label\";s:13:\"draft_created\";s:11:\"module_type\";N;s:5:\"nodes\";a:14:{s:13:\"5e3c5cf57ebf0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebf0\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":143:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:2:\"10\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5cf57ebf5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebf5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c5cf57ebf0\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c5cf57ebf9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebf9\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5cf57ebf5\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:33.329999999999998;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ebfe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ebfe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5cf57ebf5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:33.329999999999998;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ec03\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec03\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5cf57ebf5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":89:{s:4:\"size\";d:33.329999999999998;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}}s:13:\"border_medium\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:17:\"border_responsive\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:11:\"connections\";a:1:{s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c5cf57ec0c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec0c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418413\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":56:{s:4:\"icon\";s:12:\"fas fa-phone\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:58:\"<p><span style=\"color: #9b9b9b;\">1-800-275-0002</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:6:\"7f7f7f\";s:10:\"duo_color1\";s:0:\"\";s:10:\"duo_color2\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"5\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec10\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec10\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418440\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":56:{s:4:\"icon\";s:15:\"far fa-envelope\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:61:\"<p><span style=\"color: #9b9b9b;\">hi@loremipsum.com</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:0:\"\";s:10:\"duo_color1\";s:0:\"\";s:10:\"duo_color2\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"3\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec2b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec2b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418413\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":56:{s:4:\"icon\";s:12:\"fas fa-phone\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:58:\"<p><span style=\"color: #9b9b9b;\">1-800-275-0002</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:6:\"7f7f7f\";s:10:\"duo_color1\";s:0:\"\";s:10:\"duo_color2\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"5\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5cf57ec2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5cf57ec2f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5892708418440\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":56:{s:4:\"icon\";s:15:\"far fa-envelope\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:4:\"text\";s:61:\"<p><span style=\"color: #9b9b9b;\">hi@loremipsum.com</span></p>\";s:4:\"size\";s:2:\"16\";s:9:\"size_unit\";s:2:\"px\";s:11:\"size_medium\";s:0:\"\";s:16:\"size_medium_unit\";s:2:\"px\";s:15:\"size_responsive\";s:0:\"\";s:20:\"size_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:5:\"color\";s:6:\"9b9b9b\";s:11:\"hover_color\";s:0:\"\";s:10:\"duo_color1\";s:0:\"\";s:10:\"duo_color2\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:12:\"text_spacing\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:15:\"text_typography\";s:0:\"\";s:22:\"text_typography_medium\";s:0:\"\";s:26:\"text_typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";a:2:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:3:\"0.0\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"3\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"icon\";s:7:\"r_align\";s:7:\"default\";s:14:\"r_custom_align\";s:4:\"left\";s:11:\"connections\";a:2:{s:4:\"link\";s:0:\"\";s:4:\"text\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";}}s:13:\"5e3c5e5444d74\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5e5444d74\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c5cf57ebfe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:4:\"text\";s:168:\"<p style=\"text-align: center;\">Contact: info@gwendowment.org</p>\n<p style=\"text-align: center;\">P. O. Box 2356,</p>\n<p style=\"text-align: center;\">Detroit, MI 48202</p>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"-10\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1581014614400_text\";s:0:\"\";s:24:\"flrich1581014648762_text\";s:0:\"\";s:24:\"flrich1581014688246_text\";s:0:\"\";s:24:\"flrich1581025605769_text\";s:0:\"\";}}s:13:\"5e3c89131488a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c89131488a\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c89131f110\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c89131f110\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c89131488a\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c89131f47b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c89131f47b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c89131f110\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c891313afd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c891313afd\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c89131f47b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}s:8:\"settings\";a:2:{s:6:\"global\";O:8:\"stdClass\":44:{s:20:\"show_default_heading\";s:1:\"0\";s:24:\"default_heading_selector\";s:15:\".fl-post-header\";s:11:\"row_margins\";s:1:\"0\";s:16:\"row_margins_unit\";s:2:\"px\";s:18:\"row_margins_medium\";s:0:\"\";s:23:\"row_margins_medium_unit\";s:2:\"px\";s:22:\"row_margins_responsive\";s:0:\"\";s:27:\"row_margins_responsive_unit\";s:2:\"px\";s:11:\"row_padding\";s:2:\"20\";s:16:\"row_padding_unit\";s:2:\"px\";s:18:\"row_padding_medium\";s:0:\"\";s:23:\"row_padding_medium_unit\";s:2:\"px\";s:22:\"row_padding_responsive\";s:0:\"\";s:27:\"row_padding_responsive_unit\";s:2:\"px\";s:9:\"row_width\";s:4:\"1100\";s:14:\"row_width_unit\";s:2:\"px\";s:17:\"row_width_default\";s:5:\"fixed\";s:25:\"row_content_width_default\";s:5:\"fixed\";s:14:\"column_margins\";s:0:\"\";s:19:\"column_margins_unit\";s:2:\"px\";s:21:\"column_margins_medium\";s:0:\"\";s:26:\"column_margins_medium_unit\";s:2:\"px\";s:25:\"column_margins_responsive\";s:0:\"\";s:30:\"column_margins_responsive_unit\";s:2:\"px\";s:14:\"column_padding\";s:0:\"\";s:19:\"column_padding_unit\";s:2:\"px\";s:21:\"column_padding_medium\";s:0:\"\";s:26:\"column_padding_medium_unit\";s:2:\"px\";s:25:\"column_padding_responsive\";s:0:\"\";s:30:\"column_padding_responsive_unit\";s:2:\"px\";s:14:\"module_margins\";s:2:\"20\";s:19:\"module_margins_unit\";s:2:\"px\";s:21:\"module_margins_medium\";s:0:\"\";s:26:\"module_margins_medium_unit\";s:2:\"px\";s:25:\"module_margins_responsive\";s:0:\"\";s:30:\"module_margins_responsive_unit\";s:2:\"px\";s:18:\"responsive_enabled\";s:1:\"1\";s:12:\"auto_spacing\";s:1:\"1\";s:17:\"medium_breakpoint\";s:3:\"992\";s:21:\"responsive_breakpoint\";s:3:\"768\";s:24:\"responsive_col_max_width\";s:1:\"1\";s:24:\"responsive_base_fontsize\";s:2:\"16\";s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}s:6:\"layout\";O:8:\"stdClass\":2:{s:3:\"css\";s:31:\".fl-page-header{display: none;}\";s:2:\"js\";s:0:\"\";}}}'),(942,76,'_fl_builder_history_state_0','a:4:{s:5:\"label\";s:13:\"draft_created\";s:11:\"module_type\";N;s:5:\"nodes\";a:16:{s:13:\"5e3c4e59c908e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c908e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":142:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"720\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:4:\"full\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:2:\"94\";s:12:\"bg_image_src\";s:97:\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"radial\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center bottom\";s:6:\"colors\";a:2:{i:0;s:20:\"rgba(75,88,135,0.16)\";i:1;s:17:\"rgba(75,88,135,0)\";}s:5:\"stops\";a:2:{i:0;s:2:\"40\";i:1;s:1:\"0\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:6:\"invert\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"10\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c4e59c9099\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c9099\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c908e\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90a0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c9099\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":86:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:2:\"80\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:3:\"yes\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"10\";s:9:\"top_right\";s:2:\"10\";s:11:\"bottom_left\";s:2:\"10\";s:12:\"bottom_right\";s:2:\"10\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:14:\"border_opacity\";s:3:\"100\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90a9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90a9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":73:{s:4:\"text\";s:12:\"Find out how\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:59:\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:11:\"Nunito Sans\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:10:\"duo_color1\";s:0:\"\";s:10:\"duo_color2\";s:0:\"\";s:8:\"bg_color\";s:6:\"2b3d66\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:2:\"20\";s:9:\"top_right\";s:2:\"20\";s:11:\"bottom_left\";s:2:\"20\";s:12:\"bottom_right\";s:2:\"20\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"connections\";a:9:{s:4:\"text\";s:0:\"\";s:4:\"link\";s:0:\"\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";}s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5e3c4e59c90ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90ad\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c4e59c90a0\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c4e59c90b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c4e59c90ad\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:3:\"100\";s:15:\"size_responsive\";s:3:\"100\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"4b5887\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"32\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"4\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c4e59c90b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c4e59c90b6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c4e59c90b2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":77:{s:4:\"text\";s:156:\"<p style=\"text-align: center; text-decoration: underline;\"><span style=\"font-size: 45px;\"><em>Discover and develop genius buried in poverty.</em></span></p>\";s:5:\"color\";s:6:\"e8e8e8\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:3:\"190\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580496234618_text\";s:0:\"\";s:24:\"flrich1580496716557_text\";s:0:\"\";s:24:\"flrich1580496836540_text\";s:0:\"\";s:24:\"flrich1580496894448_text\";s:0:\"\";s:24:\"flrich1580498309856_text\";s:0:\"\";s:24:\"flrich1580499095946_text\";s:0:\"\";s:24:\"flrich1580499573934_text\";s:0:\"\";s:24:\"flrich1580499889083_text\";s:0:\"\";s:24:\"flrich1580502679289_text\";s:0:\"\";s:24:\"flrich1580503143270_text\";s:0:\"\";s:24:\"flrich1580503278404_text\";s:0:\"\";s:24:\"flrich1581006099096_text\";s:0:\"\";s:24:\"flrich1581006401216_text\";s:0:\"\";s:24:\"flrich1581006621574_text\";s:0:\"\";s:24:\"flrich1581007915196_text\";s:0:\"\";s:24:\"flrich1581008229646_text\";s:0:\"\";s:24:\"flrich1581008915443_text\";s:0:\"\";s:24:\"flrich1581011019155_text\";s:0:\"\";s:24:\"flrich1581011050367_text\";s:0:\"\";s:24:\"flrich1581013921071_text\";s:0:\"\";s:24:\"flrich1581013971763_text\";s:0:\"\";s:24:\"flrich1581024806923_text\";s:0:\"\";s:24:\"flrich1581024846716_text\";s:0:\"\";s:24:\"flrich1581024987925_text\";s:0:\"\";s:24:\"flrich1581025004526_text\";s:0:\"\";s:24:\"flrich1581031573330_text\";s:0:\"\";s:24:\"flrich1581031699580_text\";s:0:\"\";s:24:\"flrich1581031805420_text\";s:0:\"\";s:24:\"flrich1581031918231_text\";s:0:\"\";s:24:\"flrich1581033525614_text\";s:0:\"\";s:24:\"flrich1581033650175_text\";s:0:\"\";s:24:\"flrich1581033842313_text\";s:0:\"\";s:24:\"flrich1581033948047_text\";s:0:\"\";s:24:\"flrich1581034131482_text\";s:0:\"\";s:24:\"flrich1581034160102_text\";s:0:\"\";s:24:\"flrich1581034416371_text\";s:0:\"\";s:24:\"flrich1581099007208_text\";s:0:\"\";s:24:\"flrich1581099115892_text\";s:0:\"\";s:24:\"flrich1581099720891_text\";s:0:\"\";s:24:\"flrich1581100055532_text\";s:0:\"\";s:24:\"flrich1581100276169_text\";s:0:\"\";s:24:\"flrich1581114371000_text\";s:0:\"\";s:24:\"flrich1581114924101_text\";s:0:\"\";s:24:\"flrich1581115222012_text\";s:0:\"\";s:24:\"flrich1581115259466_text\";s:0:\"\";}}s:13:\"5e3c509278f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c509278f9f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:3:\"150\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:6:\"4b5887\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e3c5092894d9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c5092894d9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c50928988a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c50928988a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:43.93;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e3c51e8b9546\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c51e8b9546\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c50928988a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"35\";s:9:\"photo_src\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:6:\"cccccc\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:35;s:5:\"title\";s:8:\"gwselogo\";s:8:\"filename\";s:12:\"gwselogo.png\";s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:4:\"link\";s:70:\"http://gwendowment.org/wordpress1/fl-theme-layout/front-page/gwselogo/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"gwselogo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:30;s:4:\"date\";d:1575653301000;s:8:\"modified\";d:1575653301000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 6, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b286c8c576\";s:6:\"delete\";s:10:\"5134a89e91\";s:4:\"edit\";s:10:\"99ffdd8e1c\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=35&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:14:\"uploadedToLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=30&action=edit\";s:15:\"uploadedToTitle\";s:10:\"Front Page\";s:15:\"filesizeInBytes\";i:4212;s:21:\"filesizeHumanReadable\";s:4:\"4 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:73:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\";s:6:\"height\";i:83;s:5:\"width\";i:112;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5e3c523ae1fcb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c523ae1fcb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c5092894d9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"56.07\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:6:\"ffffff\";s:5:\"width\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"17\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c525fdd3b2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c525fdd3b2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c523ae1fcb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":67:{s:4:\"menu\";s:9:\"main-menu\";s:11:\"menu_layout\";s:10:\"horizontal\";s:20:\"submenu_hover_toggle\";s:4:\"none\";s:20:\"submenu_click_toggle\";s:6:\"arrows\";s:8:\"collapse\";s:1:\"1\";s:12:\"mobile_title\";s:4:\"Menu\";s:13:\"mobile_toggle\";s:9:\"hamburger\";s:17:\"mobile_full_width\";s:2:\"no\";s:15:\"flyout_position\";s:4:\"left\";s:17:\"mobile_breakpoint\";s:6:\"mobile\";s:10:\"menu_align\";s:5:\"right\";s:17:\"menu_align_medium\";s:0:\"\";s:21:\"menu_align_responsive\";s:0:\"\";s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:6:\"f4f4f4\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:10:\"Montserrat\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"16\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:14:\"show_separator\";s:2:\"no\";s:15:\"separator_color\";s:6:\"000000\";s:16:\"submenu_bg_color\";s:6:\"ffffff\";s:11:\"drop_shadow\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:16:\"link_spacing_top\";s:2:\"14\";s:17:\"link_spacing_unit\";s:2:\"px\";s:18:\"link_spacing_right\";s:2:\"14\";s:19:\"link_spacing_bottom\";s:2:\"14\";s:17:\"link_spacing_left\";s:2:\"14\";s:19:\"submenu_spacing_top\";s:1:\"0\";s:20:\"submenu_spacing_unit\";s:2:\"px\";s:21:\"submenu_spacing_right\";s:1:\"0\";s:22:\"submenu_spacing_bottom\";s:1:\"0\";s:20:\"submenu_spacing_left\";s:1:\"0\";s:24:\"submenu_link_spacing_top\";s:0:\"\";s:25:\"submenu_link_spacing_unit\";s:2:\"px\";s:26:\"submenu_link_spacing_right\";s:0:\"\";s:27:\"submenu_link_spacing_bottom\";s:0:\"\";s:25:\"submenu_link_spacing_left\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:4:\"menu\";s:11:\"connections\";a:7:{s:13:\"menu_bg_color\";s:0:\"\";s:14:\"mobile_menu_bg\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:19:\"link_hover_bg_color\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:16:\"submenu_bg_color\";s:0:\"\";}}}s:13:\"5e3c54857e283\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e283\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e3c509278f9f\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5e3c54857e636\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e636\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e3c54857e283\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";d:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-40\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5e3c54857e08a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e3c54857e08a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e3c54857e636\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:5:\"color\";s:6:\"cccccc\";s:6:\"height\";i:1;s:5:\"width\";s:3:\"100\";s:10:\"width_unit\";s:1:\"%\";s:5:\"align\";s:4:\"auto\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"39\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";s:11:\"connections\";a:1:{s:5:\"color\";s:0:\"\";}}}}s:8:\"settings\";a:2:{s:6:\"global\";O:8:\"stdClass\":44:{s:20:\"show_default_heading\";s:1:\"0\";s:24:\"default_heading_selector\";s:15:\".fl-post-header\";s:11:\"row_margins\";s:1:\"0\";s:16:\"row_margins_unit\";s:2:\"px\";s:18:\"row_margins_medium\";s:0:\"\";s:23:\"row_margins_medium_unit\";s:2:\"px\";s:22:\"row_margins_responsive\";s:0:\"\";s:27:\"row_margins_responsive_unit\";s:2:\"px\";s:11:\"row_padding\";s:2:\"20\";s:16:\"row_padding_unit\";s:2:\"px\";s:18:\"row_padding_medium\";s:0:\"\";s:23:\"row_padding_medium_unit\";s:2:\"px\";s:22:\"row_padding_responsive\";s:0:\"\";s:27:\"row_padding_responsive_unit\";s:2:\"px\";s:9:\"row_width\";s:4:\"1100\";s:14:\"row_width_unit\";s:2:\"px\";s:17:\"row_width_default\";s:5:\"fixed\";s:25:\"row_content_width_default\";s:5:\"fixed\";s:14:\"column_margins\";s:0:\"\";s:19:\"column_margins_unit\";s:2:\"px\";s:21:\"column_margins_medium\";s:0:\"\";s:26:\"column_margins_medium_unit\";s:2:\"px\";s:25:\"column_margins_responsive\";s:0:\"\";s:30:\"column_margins_responsive_unit\";s:2:\"px\";s:14:\"column_padding\";s:0:\"\";s:19:\"column_padding_unit\";s:2:\"px\";s:21:\"column_padding_medium\";s:0:\"\";s:26:\"column_padding_medium_unit\";s:2:\"px\";s:25:\"column_padding_responsive\";s:0:\"\";s:30:\"column_padding_responsive_unit\";s:2:\"px\";s:14:\"module_margins\";s:2:\"20\";s:19:\"module_margins_unit\";s:2:\"px\";s:21:\"module_margins_medium\";s:0:\"\";s:26:\"module_margins_medium_unit\";s:2:\"px\";s:25:\"module_margins_responsive\";s:0:\"\";s:30:\"module_margins_responsive_unit\";s:2:\"px\";s:18:\"responsive_enabled\";s:1:\"1\";s:12:\"auto_spacing\";s:1:\"1\";s:17:\"medium_breakpoint\";s:3:\"992\";s:21:\"responsive_breakpoint\";s:3:\"768\";s:24:\"responsive_col_max_width\";s:1:\"1\";s:24:\"responsive_base_fontsize\";s:2:\"16\";s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}s:6:\"layout\";O:8:\"stdClass\":2:{s:3:\"css\";s:56:\".fl-page-header{display: none;}\r\n.fl-menu {body: white;}\";s:2:\"js\";s:0:\"\";}}}'),(943,108,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.0163251042160706;s:5:\"bytes\";i:12051;s:11:\"size_before\";i:200305;s:10:\"size_after\";i:188254;s:4:\"time\";d:0.19;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.46;s:5:\"bytes\";i:279;s:11:\"size_before\";i:5110;s:10:\"size_after\";i:4831;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1600000000000001;s:5:\"bytes\";i:483;s:11:\"size_before\";i:11614;s:10:\"size_after\";i:11131;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5099999999999998;s:5:\"bytes\";i:3554;s:11:\"size_before\";i:64448;s:10:\"size_after\";i:60894;s:4:\"time\";d:0.050000000000000003;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4900000000000002;s:5:\"bytes\";i:7735;s:11:\"size_before\";i:119133;s:10:\"size_after\";i:111398;s:4:\"time\";d:0.10000000000000001;}}}'),(944,94,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.8605604387013193;s:5:\"bytes\";i:4352;s:11:\"size_before\";i:89537;s:10:\"size_after\";i:85185;s:4:\"time\";d:0.11000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04;s:5:\"bytes\";i:259;s:11:\"size_before\";i:5141;s:10:\"size_after\";i:4882;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0999999999999996;s:5:\"bytes\";i:569;s:11:\"size_before\";i:13881;s:10:\"size_after\";i:13312;s:4:\"time\";d:0.029999999999999999;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:5;s:5:\"bytes\";i:3524;s:11:\"size_before\";i:70515;s:10:\"size_after\";i:66991;s:4:\"time\";d:0.070000000000000007;}}}'),(945,93,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.6543306243016973;s:5:\"bytes\";i:3041;s:11:\"size_before\";i:65337;s:10:\"size_after\";i:62296;s:4:\"time\";d:0.050000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3300000000000001;s:5:\"bytes\";i:281;s:11:\"size_before\";i:5269;s:10:\"size_after\";i:4988;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7300000000000004;s:5:\"bytes\";i:479;s:11:\"size_before\";i:10134;s:10:\"size_after\";i:9655;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5700000000000003;s:5:\"bytes\";i:2281;s:11:\"size_before\";i:49934;s:10:\"size_after\";i:47653;s:4:\"time\";d:0.02;}}}'),(946,83,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:179373;s:10:\"size_after\";i:179373;s:4:\"time\";d:0.070000000000000007;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:46853;s:10:\"size_after\";i:46853;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:132520;s:10:\"size_after\";i:132520;s:4:\"time\";d:0.050000000000000003;}}}'),(947,75,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.448722061811571;s:5:\"bytes\";i:832;s:11:\"size_before\";i:18702;s:10:\"size_after\";i:17870;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8399999999999999;s:5:\"bytes\";i:304;s:11:\"size_before\";i:6276;s:10:\"size_after\";i:5972;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.25;s:5:\"bytes\";i:528;s:11:\"size_before\";i:12426;s:10:\"size_after\";i:11898;s:4:\"time\";d:0.01;}}}'),(948,35,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:36.799620132953464;s:5:\"bytes\";i:1550;s:11:\"size_before\";i:4212;s:10:\"size_after\";i:2662;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.799999999999997;s:5:\"bytes\";i:1550;s:11:\"size_before\";i:4212;s:10:\"size_after\";i:2662;s:4:\"time\";d:0.02;}}}'),(949,28,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.4642212296873511;s:5:\"bytes\";i:1150;s:11:\"size_before\";i:21046;s:10:\"size_after\";i:19896;s:4:\"time\";d:0.040000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4000000000000004;s:5:\"bytes\";i:392;s:11:\"size_before\";i:6126;s:10:\"size_after\";i:5734;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1200000000000001;s:5:\"bytes\";i:460;s:11:\"size_before\";i:11177;s:10:\"size_after\";i:10717;s:4:\"time\";d:0.01;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.96;s:5:\"bytes\";i:298;s:11:\"size_before\";i:3743;s:10:\"size_after\";i:3445;s:4:\"time\";d:0.02;}}}'),(950,27,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.4161847631552913;s:5:\"bytes\";i:24552;s:11:\"size_before\";i:555955;s:10:\"size_after\";i:531403;s:4:\"time\";d:0.26000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5599999999999996;s:5:\"bytes\";i:343;s:11:\"size_before\";i:6165;s:10:\"size_after\";i:5822;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8399999999999999;s:5:\"bytes\";i:674;s:11:\"size_before\";i:13927;s:10:\"size_after\";i:13253;s:4:\"time\";d:0.029999999999999999;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1500000000000004;s:5:\"bytes\";i:2791;s:11:\"size_before\";i:67210;s:10:\"size_after\";i:64419;s:4:\"time\";d:0.029999999999999999;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1699999999999999;s:5:\"bytes\";i:4649;s:11:\"size_before\";i:111571;s:10:\"size_after\";i:106922;s:4:\"time\";d:0.070000000000000007;}s:30:\"twentyseventeen-featured-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4900000000000002;s:5:\"bytes\";i:15880;s:11:\"size_before\";i:353638;s:10:\"size_after\";i:337758;s:4:\"time\";d:0.11;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2400000000000002;s:5:\"bytes\";i:215;s:11:\"size_before\";i:3444;s:10:\"size_after\";i:3229;s:4:\"time\";d:0.01;}}}'),(951,26,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.5203619909502262;s:5:\"bytes\";i:1586;s:11:\"size_before\";i:28730;s:10:\"size_after\";i:27144;s:4:\"time\";d:0.060000000000000005;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5099999999999998;s:5:\"bytes\";i:402;s:11:\"size_before\";i:7298;s:10:\"size_after\";i:6896;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5099999999999998;s:5:\"bytes\";i:972;s:11:\"size_before\";i:17651;s:10:\"size_after\";i:16679;s:4:\"time\";d:0.02;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6100000000000003;s:5:\"bytes\";i:212;s:11:\"size_before\";i:3781;s:10:\"size_after\";i:3569;s:4:\"time\";d:0.01;}}}'),(952,25,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.3523929019537544;s:5:\"bytes\";i:1772;s:11:\"size_before\";i:27895;s:10:\"size_after\";i:26123;s:4:\"time\";d:0.070000000000000007;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3600000000000003;s:5:\"bytes\";i:474;s:11:\"size_before\";i:7447;s:10:\"size_after\";i:6973;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1100000000000003;s:5:\"bytes\";i:997;s:11:\"size_before\";i:16313;s:10:\"size_after\";i:15316;s:4:\"time\";d:0.029999999999999999;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2800000000000002;s:5:\"bytes\";i:301;s:11:\"size_before\";i:4135;s:10:\"size_after\";i:3834;s:4:\"time\";d:0.029999999999999999;}}}'),(953,24,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.0376871311841374;s:5:\"bytes\";i:56120;s:11:\"size_before\";i:929495;s:10:\"size_after\";i:873375;s:4:\"time\";d:0.35000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4900000000000002;s:5:\"bytes\";i:459;s:11:\"size_before\";i:7069;s:10:\"size_after\";i:6610;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9100000000000001;s:5:\"bytes\";i:932;s:11:\"size_before\";i:15780;s:10:\"size_after\";i:14848;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9500000000000002;s:5:\"bytes\";i:5388;s:11:\"size_before\";i:90580;s:10:\"size_after\";i:85192;s:4:\"time\";d:0.029999999999999999;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.7599999999999998;s:5:\"bytes\";i:11224;s:11:\"size_before\";i:165924;s:10:\"size_after\";i:154700;s:4:\"time\";d:0.089999999999999997;}s:30:\"twentyseventeen-featured-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8499999999999996;s:5:\"bytes\";i:37834;s:11:\"size_before\";i:646261;s:10:\"size_after\";i:608427;s:4:\"time\";d:0.20000000000000001;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.29;s:5:\"bytes\";i:283;s:11:\"size_before\";i:3881;s:10:\"size_after\";i:3598;s:4:\"time\";d:0.01;}}}'),(954,23,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.9979117521945939;s:5:\"bytes\";i:1551;s:11:\"size_before\";i:25859;s:10:\"size_after\";i:24308;s:4:\"time\";d:0.059999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1699999999999999;s:5:\"bytes\";i:429;s:11:\"size_before\";i:6948;s:10:\"size_after\";i:6519;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6699999999999999;s:5:\"bytes\";i:855;s:11:\"size_before\";i:15075;s:10:\"size_after\";i:14220;s:4:\"time\";d:0.029999999999999999;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.96;s:5:\"bytes\";i:267;s:11:\"size_before\";i:3836;s:10:\"size_after\";i:3569;s:4:\"time\";d:0.02;}}}'),(955,22,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.7887166908239491;s:5:\"bytes\";i:859;s:11:\"size_before\";i:17938;s:10:\"size_after\";i:17079;s:4:\"time\";d:0.059999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5199999999999996;s:5:\"bytes\";i:260;s:11:\"size_before\";i:4709;s:10:\"size_after\";i:4449;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8999999999999999;s:5:\"bytes\";i:401;s:11:\"size_before\";i:10273;s:10:\"size_after\";i:9872;s:4:\"time\";d:0.029999999999999999;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.7000000000000002;s:5:\"bytes\";i:198;s:11:\"size_before\";i:2956;s:10:\"size_after\";i:2758;s:4:\"time\";d:0.02;}}}'),(956,21,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.382215288611544;s:5:\"bytes\";i:1311;s:11:\"size_before\";i:24358;s:10:\"size_after\";i:23047;s:4:\"time\";d:0.050000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3499999999999996;s:5:\"bytes\";i:391;s:11:\"size_before\";i:6160;s:10:\"size_after\";i:5769;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5099999999999998;s:5:\"bytes\";i:660;s:11:\"size_before\";i:14642;s:10:\"size_after\";i:13982;s:4:\"time\";d:0.029999999999999999;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3099999999999996;s:5:\"bytes\";i:260;s:11:\"size_before\";i:3556;s:10:\"size_after\";i:3296;s:4:\"time\";d:0.01;}}}'),(957,20,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:41.709540866167373;s:5:\"bytes\";i:25618;s:11:\"size_before\";i:61420;s:10:\"size_after\";i:35802;s:4:\"time\";d:0.47000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:42;s:5:\"bytes\";i:5966;s:11:\"size_before\";i:14204;s:10:\"size_after\";i:8238;s:4:\"time\";d:0.10000000000000001;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.590000000000003;s:5:\"bytes\";i:17480;s:11:\"size_before\";i:41038;s:10:\"size_after\";i:23558;s:4:\"time\";d:0.29999999999999999;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.159999999999997;s:5:\"bytes\";i:2172;s:11:\"size_before\";i:6178;s:10:\"size_after\";i:4006;s:4:\"time\";d:0.070000000000000007;}}}'),(958,19,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.6513674572792931;s:5:\"bytes\";i:1432;s:11:\"size_before\";i:25339;s:10:\"size_after\";i:23907;s:4:\"time\";d:0.070000000000000007;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.75;s:5:\"bytes\";i:380;s:11:\"size_before\";i:6607;s:10:\"size_after\";i:6227;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3200000000000003;s:5:\"bytes\";i:798;s:11:\"size_before\";i:15007;s:10:\"size_after\";i:14209;s:4:\"time\";d:0.029999999999999999;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8200000000000003;s:5:\"bytes\";i:254;s:11:\"size_before\";i:3725;s:10:\"size_after\";i:3471;s:4:\"time\";d:0.02;}}}'),(959,18,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.6376638855780685;s:5:\"bytes\";i:1419;s:11:\"size_before\";i:25170;s:10:\"size_after\";i:23751;s:4:\"time\";d:0.040000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1299999999999999;s:5:\"bytes\";i:404;s:11:\"size_before\";i:6587;s:10:\"size_after\";i:6183;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1699999999999999;s:5:\"bytes\";i:769;s:11:\"size_before\";i:14862;s:10:\"size_after\";i:14093;s:4:\"time\";d:0.02;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6100000000000003;s:5:\"bytes\";i:246;s:11:\"size_before\";i:3721;s:10:\"size_after\";i:3475;s:4:\"time\";d:0.01;}}}'),(960,17,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.3417227164243872;s:5:\"bytes\";i:1231;s:11:\"size_before\";i:23045;s:10:\"size_after\";i:21814;s:4:\"time\";d:0.050000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5800000000000001;s:5:\"bytes\";i:337;s:11:\"size_before\";i:6041;s:10:\"size_after\";i:5704;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9900000000000002;s:5:\"bytes\";i:677;s:11:\"size_before\";i:13562;s:10:\"size_after\";i:12885;s:4:\"time\";d:0.02;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2999999999999998;s:5:\"bytes\";i:217;s:11:\"size_before\";i:3442;s:10:\"size_after\";i:3225;s:4:\"time\";d:0.02;}}}'),(961,16,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.7328417470221211;s:5:\"bytes\";i:1187;s:11:\"size_before\";i:17630;s:10:\"size_after\";i:16443;s:4:\"time\";d:0.029999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9199999999999999;s:5:\"bytes\";i:328;s:11:\"size_before\";i:5537;s:10:\"size_after\";i:5209;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.21;s:5:\"bytes\";i:644;s:11:\"size_before\";i:8932;s:10:\"size_after\";i:8288;s:4:\"time\";d:0.01;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.7999999999999998;s:5:\"bytes\";i:215;s:11:\"size_before\";i:3161;s:10:\"size_after\";i:2946;s:4:\"time\";d:0.01;}}}'),(962,15,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.1058918111864013;s:5:\"bytes\";i:715;s:11:\"size_before\";i:17414;s:10:\"size_after\";i:16699;s:4:\"time\";d:0.029999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6399999999999997;s:5:\"bytes\";i:226;s:11:\"size_before\";i:4874;s:10:\"size_after\";i:4648;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2200000000000002;s:5:\"bytes\";i:308;s:11:\"size_before\";i:9566;s:10:\"size_after\";i:9258;s:4:\"time\";d:0.01;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0899999999999999;s:5:\"bytes\";i:181;s:11:\"size_before\";i:2974;s:10:\"size_after\";i:2793;s:4:\"time\";d:0.01;}}}'),(963,14,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.5676424883228322;s:5:\"bytes\";i:20399;s:11:\"size_before\";i:446598;s:10:\"size_after\";i:426199;s:4:\"time\";d:0.23999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2300000000000004;s:5:\"bytes\";i:385;s:11:\"size_before\";i:6177;s:10:\"size_after\";i:5792;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1900000000000004;s:5:\"bytes\";i:781;s:11:\"size_before\";i:15048;s:10:\"size_after\";i:14267;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4500000000000002;s:5:\"bytes\";i:2986;s:11:\"size_before\";i:67094;s:10:\"size_after\";i:64108;s:4:\"time\";d:0.029999999999999999;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6799999999999997;s:5:\"bytes\";i:4992;s:11:\"size_before\";i:106703;s:10:\"size_after\";i:101711;s:4:\"time\";d:0.059999999999999998;}s:30:\"twentyseventeen-featured-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4199999999999999;s:5:\"bytes\";i:10970;s:11:\"size_before\";i:247954;s:10:\"size_after\";i:236984;s:4:\"time\";d:0.12;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8700000000000001;s:5:\"bytes\";i:285;s:11:\"size_before\";i:3622;s:10:\"size_after\";i:3337;s:4:\"time\";d:0.01;}}}'),(964,13,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.429023596564539;s:5:\"bytes\";i:9963;s:11:\"size_before\";i:224948;s:10:\"size_after\";i:214985;s:4:\"time\";d:0.11;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7699999999999996;s:5:\"bytes\";i:321;s:11:\"size_before\";i:6725;s:10:\"size_after\";i:6404;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5099999999999998;s:5:\"bytes\";i:600;s:11:\"size_before\";i:13306;s:10:\"size_after\";i:12706;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5300000000000002;s:5:\"bytes\";i:3394;s:11:\"size_before\";i:74982;s:10:\"size_after\";i:71588;s:4:\"time\";d:0.029999999999999999;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3099999999999996;s:5:\"bytes\";i:5455;s:11:\"size_before\";i:126433;s:10:\"size_after\";i:120978;s:4:\"time\";d:0.040000000000000001;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5099999999999998;s:5:\"bytes\";i:193;s:11:\"size_before\";i:3502;s:10:\"size_after\";i:3309;s:4:\"time\";d:0.01;}}}'),(965,12,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.5203619909502262;s:5:\"bytes\";i:1586;s:11:\"size_before\";i:28730;s:10:\"size_after\";i:27144;s:4:\"time\";d:0.050000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5099999999999998;s:5:\"bytes\";i:402;s:11:\"size_before\";i:7298;s:10:\"size_after\";i:6896;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5099999999999998;s:5:\"bytes\";i:972;s:11:\"size_before\";i:17651;s:10:\"size_after\";i:16679;s:4:\"time\";d:0.029999999999999999;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6100000000000003;s:5:\"bytes\";i:212;s:11:\"size_before\";i:3781;s:10:\"size_after\";i:3569;s:4:\"time\";d:0.01;}}}'),(966,11,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.322981366459629;s:5:\"bytes\";i:118;s:11:\"size_before\";i:644;s:10:\"size_after\";i:526;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.32;s:5:\"bytes\";i:118;s:11:\"size_before\";i:644;s:10:\"size_after\";i:526;s:4:\"time\";d:0.01;}}}'),(967,10,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.0880878582634983;s:5:\"bytes\";i:1591;s:11:\"size_before\";i:26133;s:10:\"size_after\";i:24542;s:4:\"time\";d:0.050000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6299999999999999;s:5:\"bytes\";i:435;s:11:\"size_before\";i:6564;s:10:\"size_after\";i:6129;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3099999999999996;s:5:\"bytes\";i:837;s:11:\"size_before\";i:15756;s:10:\"size_after\";i:14919;s:4:\"time\";d:0.01;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3699999999999992;s:5:\"bytes\";i:319;s:11:\"size_before\";i:3813;s:10:\"size_after\";i:3494;s:4:\"time\";d:0.02;}}}'),(968,9,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.382215288611544;s:5:\"bytes\";i:1311;s:11:\"size_before\";i:24358;s:10:\"size_after\";i:23047;s:4:\"time\";d:0.040000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3499999999999996;s:5:\"bytes\";i:391;s:11:\"size_before\";i:6160;s:10:\"size_after\";i:5769;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5099999999999998;s:5:\"bytes\";i:660;s:11:\"size_before\";i:14642;s:10:\"size_after\";i:13982;s:4:\"time\";d:0.01;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3099999999999996;s:5:\"bytes\";i:260;s:11:\"size_before\";i:3556;s:10:\"size_after\";i:3296;s:4:\"time\";d:0.02;}}}'),(969,5,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.125;s:5:\"bytes\";i:8;s:11:\"size_before\";i:256;s:10:\"size_after\";i:248;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.1299999999999999;s:5:\"bytes\";i:8;s:11:\"size_before\";i:256;s:10:\"size_after\";i:248;s:4:\"time\";d:0.02;}}}'),(970,4,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:33.362264671574962;s:5:\"bytes\";i:265994;s:11:\"size_before\";i:797290;s:10:\"size_after\";i:531296;s:4:\"time\";d:7.1399999999999997;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.899999999999999;s:5:\"bytes\";i:3525;s:11:\"size_before\";i:9301;s:10:\"size_after\";i:5776;s:4:\"time\";d:0.070000000000000007;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.399999999999999;s:5:\"bytes\";i:13570;s:11:\"size_before\";i:32779;s:10:\"size_after\";i:19209;s:4:\"time\";d:0.27000000000000002;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.469999999999999;s:5:\"bytes\";i:79065;s:11:\"size_before\";i:205545;s:10:\"size_after\";i:126480;s:4:\"time\";d:2.1200000000000001;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:44.189999999999998;s:5:\"bytes\";i:165173;s:11:\"size_before\";i:373757;s:10:\"size_after\";i:208584;s:4:\"time\";d:3.8100000000000001;}s:30:\"twentyseventeen-featured-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.96;s:5:\"bytes\";i:3362;s:11:\"size_before\";i:171601;s:10:\"size_after\";i:168239;s:4:\"time\";d:0.83999999999999997;}s:32:\"twentyseventeen-thumbnail-avatar\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.16;s:5:\"bytes\";i:1299;s:11:\"size_before\";i:4307;s:10:\"size_after\";i:3008;s:4:\"time\";d:0.029999999999999999;}}}'),(974,46,'_fl_builder_history_state_0','a:4:{s:5:\"label\";s:13:\"draft_created\";s:11:\"module_type\";N;s:5:\"nodes\";a:23:{s:13:\"5defa442b79ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442b79ad\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa442e54dc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e54dc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa442b79ad\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa442e91cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e91cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"73.03\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa4487c019\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa4487c019\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"26.97\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa46682ac2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa46682ac2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa442e91cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:1688:\"<h2 style=\"text-align: left;\">Investment & Impact</h2>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">Replenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”</span>\n\n<span style=\"font-size: 16px; color: #808080;\">Because the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:</span>\n<ul>\n <li><span style=\"font-size: 16px; color: #808080;\">Unusual Assets (such as a vehicle, work of art, or real estate),</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Wills or Trust Bequests,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Charitable Gift Annuities,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">IRA Rollover Gifts,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Appreciated Securities,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">The Gift of Life Insurance, and</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">A Charitable Remainder Trust.</span></li>\n</ul>\n<span style=\"font-size: 16px; color: #808080;\">Contributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986280828_text\";s:0:\"\";s:24:\"flrich1580160915873_text\";s:0:\"\";s:24:\"flrich1580160994089_text\";s:0:\"\";s:24:\"flrich1580161344480_text\";s:0:\"\";s:24:\"flrich1581095498524_text\";s:0:\"\";s:24:\"flrich1581095786968_text\";s:0:\"\";s:24:\"flrich1581096033906_text\";s:0:\"\";s:24:\"flrich1581096127044_text\";s:0:\"\";s:24:\"flrich1581096139577_text\";s:0:\"\";}}s:13:\"5defa49e863ae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa49e863ae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa4487c019\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"14\";s:9:\"photo_src\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"78\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:14;s:5:\"title\";s:33:\"Browne_Henriette_-_A_Girl_Writing\";s:8:\"filename\";s:37:\"Browne_Henriette_-_A_Girl_Writing.jpg\";s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:4:\"link\";s:68:\"http://gwendowment.org/wordpress1/browne_henriette_-_a_girl_writing/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:33:\"browne_henriette_-_a_girl_writing\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316922000;s:8:\"modified\";d:1575316922000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"cbfdbac09b\";s:6:\"delete\";s:10:\"f6d9112811\";s:4:\"edit\";s:10:\"0c52ac4872\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=14&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1164538;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:235;s:5:\"width\";i:300;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-300x235.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:803;s:5:\"width\";i:1024;s:3:\"url\";s:107:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-1024x803.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa6476da2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6476da2f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"280\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa64780adc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa64780adc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6476da2f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa647847cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa647847cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa64780adc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa68337135\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68337135\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"670\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6834ded1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6834ded1\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa68337135\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa68351bc0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68351bc0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6834ded1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-50\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa692aebae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa692aebae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa68351bc0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:4:\"text\";s:290:\"<p style=\"text-align: center;\"><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i>\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986837297_text\";s:0:\"\";s:24:\"flrich1575986864207_text\";s:0:\"\";s:24:\"flrich1575987018674_text\";s:0:\"\";s:24:\"flrich1580161859153_text\";s:0:\"\";}}s:13:\"5defa6c87a58b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c87a58b\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:4;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:3:\"890\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6c88d635\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c88d635\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6c87a58b\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa6c891324\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c891324\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:36.850000000000001;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa6c895012\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c895012\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"63.15\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"60\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa6db0420a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6db0420a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c891324\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"15\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:15;s:5:\"title\";s:9:\"Eli_Broad\";s:8:\"filename\";s:13:\"Eli_Broad.jpg\";s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:4:\"link\";s:44:\"http://gwendowment.org/wordpress1/eli_broad/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:9:\"eli_broad\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316931000;s:8:\"modified\";d:1575316931000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"97e2e11f96\";s:6:\"delete\";s:10:\"bb92a16204\";s:4:\"edit\";s:10:\"3db9e3add6\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=15&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:9338;s:21:\"filesizeHumanReadable\";s:4:\"9 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:202;s:5:\"width\";i:300;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa704c89ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa704c89ba\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c895012\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:282:\"<span style=\"font-size: 14px; color: #808080;\">“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.”\n\n<span style=\"font-size:14px; color:#808080;\">- Eli Broad </span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986951424_text\";s:0:\"\";s:24:\"flrich1575987255360_text\";s:0:\"\";s:24:\"flrich1580161890254_text\";s:0:\"\";s:24:\"flrich1580161913017_text\";s:0:\"\";s:24:\"flrich1581100570325_text\";s:0:\"\";}}s:13:\"5e2f5808dc420\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5808dc420\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"946\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f580a09fdd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a09fdd\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5808dc420\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f580a0dccc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a0dccc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f580a09fdd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f58221b035\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f58221b035\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f580a0dccc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:4:\"text\";s:71:\"<h2 style=\"text-align: left;\"></h2>\n<h2 style=\"text-align: left;\"></h2>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:2:\"20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580161062185_text\";s:0:\"\";s:24:\"flrich1580161098815_text\";s:0:\"\";s:24:\"flrich1580161168623_text\";s:0:\"\";s:24:\"flrich1580161293055_text\";s:0:\"\";s:24:\"flrich1580161327619_text\";s:0:\"\";s:24:\"flrich1580161425665_text\";s:0:\"\";s:24:\"flrich1580161503018_text\";s:0:\"\";s:24:\"flrich1581095355305_text\";s:0:\"\";s:24:\"flrich1581095487519_text\";s:0:\"\";s:24:\"flrich1581095911342_text\";s:0:\"\";s:24:\"flrich1581096025954_text\";s:0:\"\";}}}s:8:\"settings\";a:2:{s:6:\"global\";O:8:\"stdClass\":44:{s:20:\"show_default_heading\";s:1:\"0\";s:24:\"default_heading_selector\";s:15:\".fl-post-header\";s:11:\"row_margins\";s:1:\"0\";s:16:\"row_margins_unit\";s:2:\"px\";s:18:\"row_margins_medium\";s:0:\"\";s:23:\"row_margins_medium_unit\";s:2:\"px\";s:22:\"row_margins_responsive\";s:0:\"\";s:27:\"row_margins_responsive_unit\";s:2:\"px\";s:11:\"row_padding\";s:2:\"20\";s:16:\"row_padding_unit\";s:2:\"px\";s:18:\"row_padding_medium\";s:0:\"\";s:23:\"row_padding_medium_unit\";s:2:\"px\";s:22:\"row_padding_responsive\";s:0:\"\";s:27:\"row_padding_responsive_unit\";s:2:\"px\";s:9:\"row_width\";s:4:\"1100\";s:14:\"row_width_unit\";s:2:\"px\";s:17:\"row_width_default\";s:5:\"fixed\";s:25:\"row_content_width_default\";s:5:\"fixed\";s:14:\"column_margins\";s:0:\"\";s:19:\"column_margins_unit\";s:2:\"px\";s:21:\"column_margins_medium\";s:0:\"\";s:26:\"column_margins_medium_unit\";s:2:\"px\";s:25:\"column_margins_responsive\";s:0:\"\";s:30:\"column_margins_responsive_unit\";s:2:\"px\";s:14:\"column_padding\";s:0:\"\";s:19:\"column_padding_unit\";s:2:\"px\";s:21:\"column_padding_medium\";s:0:\"\";s:26:\"column_padding_medium_unit\";s:2:\"px\";s:25:\"column_padding_responsive\";s:0:\"\";s:30:\"column_padding_responsive_unit\";s:2:\"px\";s:14:\"module_margins\";s:2:\"20\";s:19:\"module_margins_unit\";s:2:\"px\";s:21:\"module_margins_medium\";s:0:\"\";s:26:\"module_margins_medium_unit\";s:2:\"px\";s:25:\"module_margins_responsive\";s:0:\"\";s:30:\"module_margins_responsive_unit\";s:2:\"px\";s:18:\"responsive_enabled\";s:1:\"1\";s:12:\"auto_spacing\";s:1:\"1\";s:17:\"medium_breakpoint\";s:3:\"992\";s:21:\"responsive_breakpoint\";s:3:\"768\";s:24:\"responsive_col_max_width\";s:1:\"1\";s:24:\"responsive_base_fontsize\";s:2:\"16\";s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}s:6:\"layout\";O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}}}'),(975,46,'_fl_builder_history_state_1','a:4:{s:5:\"label\";s:12:\"module_added\";s:11:\"module_type\";s:6:\"button\";s:5:\"nodes\";a:24:{s:13:\"5defa442b79ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442b79ad\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa442e54dc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e54dc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa442b79ad\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa442e91cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e91cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"73.03\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa4487c019\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa4487c019\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"26.97\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa46682ac2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa46682ac2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa442e91cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:1688:\"<h2 style=\"text-align: left;\">Investment & Impact</h2>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">Replenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”</span>\n\n<span style=\"font-size: 16px; color: #808080;\">Because the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:</span>\n<ul>\n <li><span style=\"font-size: 16px; color: #808080;\">Unusual Assets (such as a vehicle, work of art, or real estate),</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Wills or Trust Bequests,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Charitable Gift Annuities,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">IRA Rollover Gifts,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Appreciated Securities,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">The Gift of Life Insurance, and</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">A Charitable Remainder Trust.</span></li>\n</ul>\n<span style=\"font-size: 16px; color: #808080;\">Contributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986280828_text\";s:0:\"\";s:24:\"flrich1580160915873_text\";s:0:\"\";s:24:\"flrich1580160994089_text\";s:0:\"\";s:24:\"flrich1580161344480_text\";s:0:\"\";s:24:\"flrich1581095498524_text\";s:0:\"\";s:24:\"flrich1581095786968_text\";s:0:\"\";s:24:\"flrich1581096033906_text\";s:0:\"\";s:24:\"flrich1581096127044_text\";s:0:\"\";s:24:\"flrich1581096139577_text\";s:0:\"\";}}s:13:\"5defa49e863ae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa49e863ae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa4487c019\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"14\";s:9:\"photo_src\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"78\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:14;s:5:\"title\";s:33:\"Browne_Henriette_-_A_Girl_Writing\";s:8:\"filename\";s:37:\"Browne_Henriette_-_A_Girl_Writing.jpg\";s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:4:\"link\";s:68:\"http://gwendowment.org/wordpress1/browne_henriette_-_a_girl_writing/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:33:\"browne_henriette_-_a_girl_writing\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316922000;s:8:\"modified\";d:1575316922000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"cbfdbac09b\";s:6:\"delete\";s:10:\"f6d9112811\";s:4:\"edit\";s:10:\"0c52ac4872\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=14&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1164538;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:235;s:5:\"width\";i:300;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-300x235.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:803;s:5:\"width\";i:1024;s:3:\"url\";s:107:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-1024x803.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa6476da2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6476da2f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"280\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa64780adc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa64780adc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6476da2f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa647847cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa647847cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa64780adc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa68337135\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68337135\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"670\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6834ded1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6834ded1\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa68337135\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa68351bc0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68351bc0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6834ded1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-50\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa692aebae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa692aebae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa68351bc0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:4:\"text\";s:290:\"<p style=\"text-align: center;\"><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i>\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986837297_text\";s:0:\"\";s:24:\"flrich1575986864207_text\";s:0:\"\";s:24:\"flrich1575987018674_text\";s:0:\"\";s:24:\"flrich1580161859153_text\";s:0:\"\";}}s:13:\"5defa6c87a58b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c87a58b\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:4;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:3:\"890\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6c88d635\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c88d635\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6c87a58b\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa6c891324\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c891324\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:36.850000000000001;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa6c895012\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c895012\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"63.15\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"60\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa6db0420a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6db0420a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c891324\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"15\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:15;s:5:\"title\";s:9:\"Eli_Broad\";s:8:\"filename\";s:13:\"Eli_Broad.jpg\";s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:4:\"link\";s:44:\"http://gwendowment.org/wordpress1/eli_broad/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:9:\"eli_broad\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316931000;s:8:\"modified\";d:1575316931000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"97e2e11f96\";s:6:\"delete\";s:10:\"bb92a16204\";s:4:\"edit\";s:10:\"3db9e3add6\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=15&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:9338;s:21:\"filesizeHumanReadable\";s:4:\"9 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:202;s:5:\"width\";i:300;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa704c89ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa704c89ba\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c895012\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:282:\"<span style=\"font-size: 14px; color: #808080;\">“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.”\n\n<span style=\"font-size:14px; color:#808080;\">- Eli Broad </span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986951424_text\";s:0:\"\";s:24:\"flrich1575987255360_text\";s:0:\"\";s:24:\"flrich1580161890254_text\";s:0:\"\";s:24:\"flrich1580161913017_text\";s:0:\"\";s:24:\"flrich1581100570325_text\";s:0:\"\";}}s:13:\"5e2f5808dc420\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5808dc420\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"946\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f580a09fdd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a09fdd\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5808dc420\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f580a0dccc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a0dccc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f580a09fdd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f58221b035\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f58221b035\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f580a0dccc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:4:\"text\";s:71:\"<h2 style=\"text-align: left;\"></h2>\n<h2 style=\"text-align: left;\"></h2>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:2:\"20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580161062185_text\";s:0:\"\";s:24:\"flrich1580161098815_text\";s:0:\"\";s:24:\"flrich1580161168623_text\";s:0:\"\";s:24:\"flrich1580161293055_text\";s:0:\"\";s:24:\"flrich1580161327619_text\";s:0:\"\";s:24:\"flrich1580161425665_text\";s:0:\"\";s:24:\"flrich1580161503018_text\";s:0:\"\";s:24:\"flrich1581095355305_text\";s:0:\"\";s:24:\"flrich1581095487519_text\";s:0:\"\";s:24:\"flrich1581095911342_text\";s:0:\"\";s:24:\"flrich1581096025954_text\";s:0:\"\";}}s:13:\"5e46da0fabc7e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e46da0fabc7e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa647847cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":70:{s:4:\"text\";s:10:\"Click Here\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:17:\"custom_width_unit\";s:2:\"px\";s:5:\"align\";s:4:\"left\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:10:\"typography\";s:0:\"\";s:17:\"typography_medium\";s:0:\"\";s:21:\"typography_responsive\";s:0:\"\";s:10:\"duo_color1\";s:0:\"\";s:10:\"duo_color2\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:17:\"button_transition\";s:7:\"disable\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";}}}s:8:\"settings\";a:2:{s:6:\"global\";O:8:\"stdClass\":44:{s:20:\"show_default_heading\";s:1:\"0\";s:24:\"default_heading_selector\";s:15:\".fl-post-header\";s:11:\"row_margins\";s:1:\"0\";s:16:\"row_margins_unit\";s:2:\"px\";s:18:\"row_margins_medium\";s:0:\"\";s:23:\"row_margins_medium_unit\";s:2:\"px\";s:22:\"row_margins_responsive\";s:0:\"\";s:27:\"row_margins_responsive_unit\";s:2:\"px\";s:11:\"row_padding\";s:2:\"20\";s:16:\"row_padding_unit\";s:2:\"px\";s:18:\"row_padding_medium\";s:0:\"\";s:23:\"row_padding_medium_unit\";s:2:\"px\";s:22:\"row_padding_responsive\";s:0:\"\";s:27:\"row_padding_responsive_unit\";s:2:\"px\";s:9:\"row_width\";s:4:\"1100\";s:14:\"row_width_unit\";s:2:\"px\";s:17:\"row_width_default\";s:5:\"fixed\";s:25:\"row_content_width_default\";s:5:\"fixed\";s:14:\"column_margins\";s:0:\"\";s:19:\"column_margins_unit\";s:2:\"px\";s:21:\"column_margins_medium\";s:0:\"\";s:26:\"column_margins_medium_unit\";s:2:\"px\";s:25:\"column_margins_responsive\";s:0:\"\";s:30:\"column_margins_responsive_unit\";s:2:\"px\";s:14:\"column_padding\";s:0:\"\";s:19:\"column_padding_unit\";s:2:\"px\";s:21:\"column_padding_medium\";s:0:\"\";s:26:\"column_padding_medium_unit\";s:2:\"px\";s:25:\"column_padding_responsive\";s:0:\"\";s:30:\"column_padding_responsive_unit\";s:2:\"px\";s:14:\"module_margins\";s:2:\"20\";s:19:\"module_margins_unit\";s:2:\"px\";s:21:\"module_margins_medium\";s:0:\"\";s:26:\"module_margins_medium_unit\";s:2:\"px\";s:25:\"module_margins_responsive\";s:0:\"\";s:30:\"module_margins_responsive_unit\";s:2:\"px\";s:18:\"responsive_enabled\";s:1:\"1\";s:12:\"auto_spacing\";s:1:\"1\";s:17:\"medium_breakpoint\";s:3:\"992\";s:21:\"responsive_breakpoint\";s:3:\"768\";s:24:\"responsive_col_max_width\";s:1:\"1\";s:24:\"responsive_base_fontsize\";s:2:\"16\";s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}s:6:\"layout\";O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}}}'),(976,46,'_fl_builder_history_state_2','a:4:{s:5:\"label\";s:14:\"module_deleted\";s:11:\"module_type\";s:6:\"button\";s:5:\"nodes\";a:23:{s:13:\"5defa442b79ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442b79ad\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:17:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa442e54dc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e54dc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa442b79ad\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa442e91cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa442e91cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"73.03\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa4487c019\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa4487c019\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa442e54dc\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";s:5:\"26.97\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa46682ac2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa46682ac2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa442e91cb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":41:{s:4:\"text\";s:1688:\"<h2 style=\"text-align: left;\">Investment & Impact</h2>\n\n<hr />\n\n<span style=\"font-size: 16px; color: #808080;\">Replenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”</span>\n\n<span style=\"font-size: 16px; color: #808080;\">Because the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:</span>\n<ul>\n <li><span style=\"font-size: 16px; color: #808080;\">Unusual Assets (such as a vehicle, work of art, or real estate),</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Wills or Trust Bequests,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Charitable Gift Annuities,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">IRA Rollover Gifts,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">Appreciated Securities,</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">The Gift of Life Insurance, and</span></li>\n <li><span style=\"font-size: 16px; color: #808080;\">A Charitable Remainder Trust.</span></li>\n</ul>\n<span style=\"font-size: 16px; color: #808080;\">Contributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.</span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986280828_text\";s:0:\"\";s:24:\"flrich1580160915873_text\";s:0:\"\";s:24:\"flrich1580160994089_text\";s:0:\"\";s:24:\"flrich1580161344480_text\";s:0:\"\";s:24:\"flrich1581095498524_text\";s:0:\"\";s:24:\"flrich1581095786968_text\";s:0:\"\";s:24:\"flrich1581096033906_text\";s:0:\"\";s:24:\"flrich1581096127044_text\";s:0:\"\";s:24:\"flrich1581096139577_text\";s:0:\"\";}}s:13:\"5defa49e863ae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa49e863ae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa4487c019\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"14\";s:9:\"photo_src\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:2:\"78\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:14;s:5:\"title\";s:33:\"Browne_Henriette_-_A_Girl_Writing\";s:8:\"filename\";s:37:\"Browne_Henriette_-_A_Girl_Writing.jpg\";s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:4:\"link\";s:68:\"http://gwendowment.org/wordpress1/browne_henriette_-_a_girl_writing/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:33:\"browne_henriette_-_a_girl_writing\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316922000;s:8:\"modified\";d:1575316922000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"cbfdbac09b\";s:6:\"delete\";s:10:\"f6d9112811\";s:4:\"edit\";s:10:\"0c52ac4872\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=14&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:1164538;s:21:\"filesizeHumanReadable\";s:4:\"1 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:235;s:5:\"width\";i:300;s:3:\"url\";s:106:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-300x235.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:803;s:5:\"width\";i:1024;s:3:\"url\";s:107:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing-1024x803.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:98:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\";s:6:\"height\";i:2509;s:5:\"width\";i:3198;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa6476da2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6476da2f\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"280\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:6:\"custom\";s:10:\"min_height\";s:1:\"0\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa64780adc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa64780adc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6476da2f\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa647847cb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa647847cb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa64780adc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa68337135\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68337135\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"670\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6834ded1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6834ded1\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa68337135\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa68351bc0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa68351bc0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6834ded1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-50\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa692aebae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa692aebae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa68351bc0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":36:{s:4:\"text\";s:290:\"<p style=\"text-align: center;\"><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i>\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986837297_text\";s:0:\"\";s:24:\"flrich1575986864207_text\";s:0:\"\";s:24:\"flrich1575987018674_text\";s:0:\"\";s:24:\"flrich1580161859153_text\";s:0:\"\";}}s:13:\"5defa6c87a58b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c87a58b\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:4;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:17:\"max_content_width\";s:3:\"890\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5defa6c88d635\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c88d635\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5defa6c87a58b\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5defa6c891324\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c891324\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";d:36.850000000000001;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5defa6c895012\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6c895012\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5defa6c88d635\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":82:{s:4:\"size\";s:5:\"63.15\";s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:2:\"60\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:6:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";}}}s:13:\"5defa6db0420a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa6db0420a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c891324\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":58:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"15\";s:9:\"photo_src\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:9:\"photo_url\";s:0:\"\";s:11:\"title_hover\";s:2:\"no\";s:9:\"url_title\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:15;s:5:\"title\";s:9:\"Eli_Broad\";s:8:\"filename\";s:13:\"Eli_Broad.jpg\";s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:4:\"link\";s:44:\"http://gwendowment.org/wordpress1/eli_broad/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:9:\"eli_broad\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1575316931000;s:8:\"modified\";d:1575316931000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"http://gwendowment.org/wordpress1/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"December 2, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"97e2e11f96\";s:6:\"delete\";s:10:\"bb92a16204\";s:4:\"edit\";s:10:\"3db9e3add6\";}s:8:\"editLink\";s:71:\"http://gwendowment.org/wordpress1/wp-admin/post.php?post=15&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:8:\"jducheny\";s:15:\"filesizeInBytes\";i:9338;s:21:\"filesizeHumanReadable\";s:4:\"9 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:202;s:5:\"width\";i:300;s:3:\"url\";s:82:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:74:\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg\";s:6:\"height\";i:236;s:5:\"width\";i:350;s:11:\"orientation\";s:9:\"landscape\";}}}s:11:\"connections\";a:2:{s:5:\"photo\";s:0:\"\";s:8:\"link_url\";s:0:\"\";}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5defa704c89ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5defa704c89ba\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5defa6c895012\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":37:{s:4:\"text\";s:282:\"<span style=\"font-size: 14px; color: #808080;\">“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.”\n\n<span style=\"font-size:14px; color:#808080;\">- Eli Broad </span>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:1:\"0\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1575986951424_text\";s:0:\"\";s:24:\"flrich1575987255360_text\";s:0:\"\";s:24:\"flrich1580161890254_text\";s:0:\"\";s:24:\"flrich1580161913017_text\";s:0:\"\";s:24:\"flrich1581100570325_text\";s:0:\"\";}}s:13:\"5e2f5808dc420\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f5808dc420\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":141:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:3:\"946\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:15:\"bg_image_source\";s:7:\"library\";s:12:\"bg_image_url\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_x_position\";s:0:\"\";s:18:\"bg_x_position_unit\";s:1:\"%\";s:20:\"bg_x_position_medium\";s:0:\"\";s:25:\"bg_x_position_medium_unit\";s:1:\"%\";s:24:\"bg_x_position_responsive\";s:0:\"\";s:29:\"bg_x_position_responsive_unit\";s:1:\"%\";s:13:\"bg_y_position\";s:0:\"\";s:18:\"bg_y_position_unit\";s:1:\"%\";s:20:\"bg_y_position_medium\";s:0:\"\";s:25:\"bg_y_position_medium_unit\";s:1:\"%\";s:24:\"bg_y_position_responsive\";s:0:\"\";s:29:\"bg_y_position_responsive_unit\";s:1:\"%\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:15:\"bg_video_mobile\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:18:\"top_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";a:5:{s:4:\"type\";s:6:\"linear\";s:5:\"angle\";s:2:\"90\";s:8:\"position\";s:13:\"center center\";s:6:\"colors\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:5:\"stops\";a:2:{i:0;s:1:\"0\";i:1;s:3:\"100\";}}s:21:\"bottom_edge_transform\";a:7:{s:10:\"scaleXSign\";s:0:\"\";s:10:\"scaleYSign\";s:0:\"\";s:5:\"skewX\";s:0:\"\";s:5:\"skewY\";s:0:\"\";s:6:\"scaleX\";s:1:\"1\";s:6:\"rotate\";s:0:\"\";s:6:\"scaleY\";s:1:\"1\";}s:18:\"container_overflow\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:11:\"connections\";a:16:{s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:17:\"bg_parallax_image\";s:0:\"\";s:16:\"bg_overlay_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:19:\"top_edge_fill_color\";s:0:\"\";s:22:\"bottom_edge_fill_color\";s:0:\"\";}}}s:13:\"5e2f580a09fdd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a09fdd\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5e2f5808dc420\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5e2f580a0dccc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f580a0dccc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5e2f580a09fdd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":81:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";a:0:{}s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5e2f58221b035\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5e2f58221b035\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5e2f580a0dccc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:4:\"text\";s:71:\"<h2 style=\"text-align: left;\"></h2>\n<h2 style=\"text-align: left;\"></h2>\";s:5:\"color\";s:6:\"4b5887\";s:10:\"typography\";a:11:{s:11:\"font_family\";s:17:\"Libre Baskerville\";s:11:\"font_weight\";s:3:\"400\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:17:\"typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:21:\"typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:16:\"visibility_logic\";s:2:\"[]\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"export\";s:0:\"\";s:6:\"import\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:2:\"20\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:11:\"connections\";a:2:{s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:24:\"flrich1580161062185_text\";s:0:\"\";s:24:\"flrich1580161098815_text\";s:0:\"\";s:24:\"flrich1580161168623_text\";s:0:\"\";s:24:\"flrich1580161293055_text\";s:0:\"\";s:24:\"flrich1580161327619_text\";s:0:\"\";s:24:\"flrich1580161425665_text\";s:0:\"\";s:24:\"flrich1580161503018_text\";s:0:\"\";s:24:\"flrich1581095355305_text\";s:0:\"\";s:24:\"flrich1581095487519_text\";s:0:\"\";s:24:\"flrich1581095911342_text\";s:0:\"\";s:24:\"flrich1581096025954_text\";s:0:\"\";}}}s:8:\"settings\";a:2:{s:6:\"global\";O:8:\"stdClass\":44:{s:20:\"show_default_heading\";s:1:\"0\";s:24:\"default_heading_selector\";s:15:\".fl-post-header\";s:11:\"row_margins\";s:1:\"0\";s:16:\"row_margins_unit\";s:2:\"px\";s:18:\"row_margins_medium\";s:0:\"\";s:23:\"row_margins_medium_unit\";s:2:\"px\";s:22:\"row_margins_responsive\";s:0:\"\";s:27:\"row_margins_responsive_unit\";s:2:\"px\";s:11:\"row_padding\";s:2:\"20\";s:16:\"row_padding_unit\";s:2:\"px\";s:18:\"row_padding_medium\";s:0:\"\";s:23:\"row_padding_medium_unit\";s:2:\"px\";s:22:\"row_padding_responsive\";s:0:\"\";s:27:\"row_padding_responsive_unit\";s:2:\"px\";s:9:\"row_width\";s:4:\"1100\";s:14:\"row_width_unit\";s:2:\"px\";s:17:\"row_width_default\";s:5:\"fixed\";s:25:\"row_content_width_default\";s:5:\"fixed\";s:14:\"column_margins\";s:0:\"\";s:19:\"column_margins_unit\";s:2:\"px\";s:21:\"column_margins_medium\";s:0:\"\";s:26:\"column_margins_medium_unit\";s:2:\"px\";s:25:\"column_margins_responsive\";s:0:\"\";s:30:\"column_margins_responsive_unit\";s:2:\"px\";s:14:\"column_padding\";s:0:\"\";s:19:\"column_padding_unit\";s:2:\"px\";s:21:\"column_padding_medium\";s:0:\"\";s:26:\"column_padding_medium_unit\";s:2:\"px\";s:25:\"column_padding_responsive\";s:0:\"\";s:30:\"column_padding_responsive_unit\";s:2:\"px\";s:14:\"module_margins\";s:2:\"20\";s:19:\"module_margins_unit\";s:2:\"px\";s:21:\"module_margins_medium\";s:0:\"\";s:26:\"module_margins_medium_unit\";s:2:\"px\";s:25:\"module_margins_responsive\";s:0:\"\";s:30:\"module_margins_responsive_unit\";s:2:\"px\";s:18:\"responsive_enabled\";s:1:\"1\";s:12:\"auto_spacing\";s:1:\"1\";s:17:\"medium_breakpoint\";s:3:\"992\";s:21:\"responsive_breakpoint\";s:3:\"768\";s:24:\"responsive_col_max_width\";s:1:\"1\";s:24:\"responsive_base_fontsize\";s:2:\"16\";s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}s:6:\"layout\";O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}}}'),(977,150,'wpedon_button_price',''),(978,150,'wpedon_button_id',''),(979,150,'wpedon_button_enable_name','0'),(980,150,'wpedon_button_enable_price','0'),(981,150,'wpedon_button_enable_currency','0'),(982,150,'wpedon_button_currency',''),(983,150,'wpedon_button_language',''),(984,150,'wpedon_button_buttonsize','0'),(985,150,'wpedon_button_account',''),(986,150,'wpedon_button_return',''),(987,150,'wpedon_button_scpriceprice',''),(988,150,'wpedon_button_scpriceaname',''),(989,150,'wpedon_button_scpricebname',''),(990,150,'wpedon_button_scpricecname',''),(991,150,'wpedon_button_scpricedname',''),(992,150,'wpedon_button_scpriceename',''),(993,150,'wpedon_button_scpricefname',''),(994,150,'wpedon_button_scpricegname',''),(995,150,'wpedon_button_scpricehname',''),(996,150,'wpedon_button_scpriceiname',''),(997,150,'wpedon_button_scpricejname',''),(998,150,'wpedon_button_scpricea',NULL),(999,150,'wpedon_button_scpriceb',NULL),(1000,150,'wpedon_button_scpricec',NULL),(1001,150,'wpedon_button_scpriced',NULL),(1002,150,'wpedon_button_scpricee',NULL),(1003,150,'wpedon_button_scpricef',NULL),(1004,150,'wpedon_button_scpriceg',NULL),(1005,150,'wpedon_button_scpriceh',NULL),(1006,150,'wpedon_button_scpricei',NULL),(1007,150,'wpedon_button_scpricej',NULL); /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_posts` -- DROP TABLE IF EXISTS `wp_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_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=InnoDB AUTO_INCREMENT=151 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_posts` -- LOCK TABLES `wp_posts` WRITE; /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; INSERT INTO `wp_posts` VALUES (1,1,'2018-02-06 17:51:13','2018-02-06 17:51:13','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2018-02-06 17:51:13','2018-02-06 17:51:13','',0,'http://gwendowment.org/wordpress1/?p=1',0,'post','',1),(2,1,'2018-02-06 17:51:13','2018-02-06 17:51:13','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ñ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://gwendowment.org/wordpress1/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','','','2020-02-07 17:02:12','2020-02-07 17:02:12','',0,'http://gwendowment.org/wordpress1/?page_id=2',0,'page','',0),(4,1,'2019-12-02 19:15:11','2019-12-02 19:15:11','','gwendowmentlogo','','inherit','open','closed','','gwendowmentlogo','','','2019-12-02 19:15:11','2019-12-02 19:15:11','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwendowmentlogo.png',0,'attachment','image/png',0),(5,1,'2019-12-02 19:17:19','2019-12-02 19:17:19','','background','','inherit','open','closed','','background','','','2019-12-02 19:17:19','2019-12-02 19:17:19','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/background.png',0,'attachment','image/png',0),(9,1,'2019-12-02 20:01:25','2019-12-02 20:01:25','','A_Girl_Writing','','inherit','open','closed','','a_girl_writing','','','2019-12-02 20:01:25','2019-12-02 20:01:25','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/A_Girl_Writing.jpg',0,'attachment','image/jpeg',0),(10,1,'2019-12-02 20:01:28','2019-12-02 20:01:28','','A_Girl_Writing_480x376','','inherit','open','closed','','a_girl_writing_480x376','','','2019-12-02 20:01:28','2019-12-02 20:01:28','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/A_Girl_Writing_480x376.jpg',0,'attachment','image/jpeg',0),(11,1,'2019-12-02 20:01:29','2019-12-02 20:01:29','','background','','inherit','open','closed','','background-2','','','2019-12-02 20:01:29','2019-12-02 20:01:29','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/background.jpg',0,'attachment','image/jpeg',0),(12,1,'2019-12-02 20:01:32','2019-12-02 20:01:32','','Biglin_Brothers_Racing','','inherit','open','closed','','biglin_brothers_racing','','','2019-12-02 20:01:32','2019-12-02 20:01:32','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing.jpg',0,'attachment','image/jpeg',0),(13,1,'2019-12-02 20:01:41','2019-12-02 20:01:41','','Biglin_Brothers_Racing_1148x294','','inherit','open','closed','','biglin_brothers_racing_1148x294','','','2020-01-27 18:03:25','2020-01-27 18:03:25','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294.jpg',0,'attachment','image/jpeg',0),(14,1,'2019-12-02 20:02:02','2019-12-02 20:02:02','','Browne_Henriette_-_A_Girl_Writing','','inherit','open','closed','','browne_henriette_-_a_girl_writing','','','2019-12-02 20:02:02','2019-12-02 20:02:02','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg',0,'attachment','image/jpeg',0),(15,1,'2019-12-02 20:02:11','2019-12-02 20:02:11','','Eli_Broad','','inherit','open','closed','','eli_broad','','','2019-12-02 20:02:11','2019-12-02 20:02:11','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad.jpg',0,'attachment','image/jpeg',0),(16,1,'2019-12-02 20:02:13','2019-12-02 20:02:13','','George_Washington','','inherit','open','closed','','george_washington','','','2019-12-02 20:02:13','2019-12-02 20:02:13','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg',0,'attachment','image/jpeg',0),(17,1,'2019-12-02 20:02:15','2019-12-02 20:02:15','','GW_resignation_390x255','','inherit','open','closed','','gw_resignation_390x255','','','2019-12-02 20:02:15','2019-12-02 20:02:15','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/GW_resignation_390x255.jpg',0,'attachment','image/jpeg',0),(18,1,'2019-12-02 20:02:18','2019-12-02 20:02:18','','GW_resignation_450x294','','inherit','open','closed','','gw_resignation_450x294','','','2019-12-02 20:02:18','2019-12-02 20:02:18','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/GW_resignation_450x294.jpg',0,'attachment','image/jpeg',0),(19,1,'2019-12-02 20:02:22','2019-12-02 20:02:22','','GW_resignation_540x353','','inherit','open','closed','','gw_resignation_540x353','','','2019-12-02 20:02:22','2019-12-02 20:02:22','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/GW_resignation_540x353.jpg',0,'attachment','image/jpeg',0),(20,1,'2019-12-02 20:02:25','2019-12-02 20:02:25','','gwendowmentlogo','','inherit','open','closed','','gwendowmentlogo-2','','','2019-12-02 20:02:25','2019-12-02 20:02:25','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwendowmentlogo-1.png',0,'attachment','image/png',0),(21,1,'2019-12-02 20:02:27','2019-12-02 20:02:27','','Impact','','inherit','open','closed','','impact','','','2019-12-02 20:02:27','2019-12-02 20:02:27','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Impact.jpg',0,'attachment','image/jpeg',0),(22,1,'2019-12-02 20:02:30','2019-12-02 20:02:30','','Robert_Hutchins','','inherit','open','closed','','robert_hutchins','','','2019-12-02 20:02:30','2019-12-02 20:02:30','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins.jpg',0,'attachment','image/jpeg',0),(23,1,'2019-12-02 20:02:33','2019-12-02 20:02:33','','Rockwell_Schoolgirl_573x355','','inherit','open','closed','','rockwell_schoolgirl_573x355','','','2019-12-02 20:02:33','2019-12-02 20:02:33','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell_Schoolgirl_573x355.jpg',0,'attachment','image/jpeg',0),(24,1,'2019-12-02 20:02:58','2019-12-02 20:02:58','','Rockwell-Large','','inherit','open','closed','','rockwell-large','','','2019-12-02 20:02:58','2019-12-02 20:02:58','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg',0,'attachment','image/jpeg',0),(25,1,'2019-12-02 20:03:05','2019-12-02 20:03:05','','Rockwells_schoolgirl','','inherit','open','closed','','rockwells_schoolgirl','','','2019-12-02 20:03:05','2019-12-02 20:03:05','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwells_schoolgirl.jpg',0,'attachment','image/jpeg',0),(26,1,'2019-12-02 20:03:08','2019-12-02 20:03:08','','Teamwork','','inherit','open','closed','','teamwork','','','2019-12-02 20:03:08','2019-12-02 20:03:08','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Teamwork.jpg',0,'attachment','image/jpeg',0),(27,1,'2019-12-02 20:04:16','2019-12-02 20:04:16','','Trumbull_GWashington_resign','','inherit','open','closed','','trumbull_gwashington_resign','','','2019-12-02 20:04:16','2019-12-02 20:04:16','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg',0,'attachment','image/jpeg',0),(28,1,'2019-12-02 20:04:23','2019-12-02 20:04:23','','Vince_Lombardi','“People who work together will win, whether it be against complex football defenses, or the problems of modern society.” - Vince Lombardi','inherit','open','closed','','vince_lombardi','','','2020-01-27 17:24:32','2020-01-27 17:24:32','',0,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi.jpg',0,'attachment','image/jpeg',0),(30,1,'2019-12-07 15:26:48','2019-12-07 15:26:48','\n <a href=\"http://gwendowment.org/wordpress1/home-page/\" target=\"_self\" itemprop=\"url\">\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n </a>\n <p>The George Washington Scholars Endowment</p>\n <p>1785</p>\n','Front Page','','publish','closed','closed','','front-page','','','2020-02-14 16:57:05','2020-02-14 16:57:05','',0,'http://gwendowment.org/wordpress1/?post_type=fl-theme-layout&p=30',0,'fl-theme-layout','',0),(31,1,'2019-12-02 20:19:49','2019-12-02 20:19:49','','Front Page','','inherit','closed','closed','','30-revision-v1','','','2019-12-02 20:19:49','2019-12-02 20:19:49','',30,'http://gwendowment.org/wordpress1/2019/12/02/30-revision-v1/',0,'revision','',0),(32,1,'2019-12-02 21:26:18','2019-12-02 21:26:18','<h2>\n THE GEORGE WASHINGTON SCHOLARS ENDOWMENT\n </h2>\n <h2>1785</h2>\n <p>History and Mission</p>\n <p>Leadership and Teamwork</p>\n <p>Quality and Equality</p>\n <p>Investment and Impact</p>\n <h3>History & Mission</h3>\n<p>The scene of George Washington resigning his commission in the Maryland State House is the stuff of legend, beautifully depicted in John Trumbull’s magnificent oil painting on display in the Rotunda of the U.S. Capitol. General Washington’s renunciation of privilege and power made him an 18th century Cincinnatus - a model of public virtue and a mythological figure in the establishment of the world’s first great democracy.</p>\n<p>Less known, but no less remarkable, is the fact that soon after returning to his beloved Mount Vernon, General Washington penned a letter to Thomas Jefferson expressing his “inclination” to endow a school “for poor and orphaned children.” On the 17th of December, 1785, General Washington pledged £1,000 to create an Endowment “for the purpose of educating orphan children or the children of such poor and indigent persons as are unable to accomplish this by their own means.”</p>\n<p>Throughout the remainder of his life, Washington personally administered the Endowment, demonstrating an affectionate interest in the students receiving his aid. After his death in December of 1799, the charitable trust was conveyed through his will to the Trustees of Alexandria Academy. By 1825—the year after Robert E. Lee’s graduation—they had unwisely spent the principal and the Academy closed. For another generation, Washington’s family continued to provide educational opportunity to the very poor but, without the Endowment, their charitable efforts could not be sustained.</p>\n<p>In 2017, citizens came together to reestablish the Endowment as a 501(c)3 charity. Now the challenge is to replenish the Endowment so that it can resume its historic work. In keeping with Washington’s Last Will & Testament, revenues from the Endowment will be used entirely to provide a fine classical education to needy children, both in this country and abroad.</p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/GW_resignation_540x353.jpg\" alt=\"GW_resignation_540x353\" itemprop=\"image\" height=\"353\" width=\"540\" title=\"GW_resignation_540x353\" onerror=\"this.style.display=\'none\'\" />\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\" alt=\"George_Washington\" itemprop=\"image\" height=\"180\" width=\"300\" title=\"George_Washington\" onerror=\"this.style.display=\'none\'\" />\n','Front Page','','inherit','closed','closed','','30-revision-v1','','','2019-12-02 21:26:18','2019-12-02 21:26:18','',30,'http://gwendowment.org/wordpress1/2019/12/02/30-revision-v1/',0,'revision','',0),(35,1,'2019-12-06 17:28:21','2019-12-06 17:28:21','','gwselogo','','inherit','open','closed','','gwselogo','','','2019-12-06 17:28:21','2019-12-06 17:28:21','',30,'http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png',0,'attachment','image/png',0),(36,1,'2019-12-06 17:41:30','2019-12-06 17:41:30','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n <p>The George Washington Scholars Endowment</p>\n <p>1785</p>\n','Front Page','','inherit','closed','closed','','30-revision-v1','','','2019-12-06 17:41:30','2019-12-06 17:41:30','',30,'http://gwendowment.org/wordpress1/2019/12/06/30-revision-v1/',0,'revision','',0),(37,1,'2019-12-06 17:50:54','2019-12-06 17:50:54','\n <h2>History & Mission</h2>\n<h4>\"GWSE is rooted in George Washington\'s original vision to provide quality education to all American children regardless of their means.\"</h4>\n<hr />\n<p>The scene of George Washington resigning his commission in the Maryland State House is the stuff of legend, beautifully depicted in John Trumbull’s magnificent oil painting on display in the Rotunda of the U.S. Capitol. General Washington’s renunciation of privilege and power made him an 18th century Cincinnatus - a model of public virtue and a mythological figure in the establishment of the world’s first great democracy.<br />\n<br />\nLess known, but no less remarkable, is the fact that soon after returning to his beloved Mount Vernon, General Washington penned a letter to Thomas Jefferson expressing his “inclination” to endow a school “for poor and orphaned children.” On the 17th of December, 1785, General Washington pledged £1,000 to create an Endowment “for the purpose of educating orphan children or the children of such poor and indigent persons as are unable to accomplish this by their own means.”</p>\n<p>Throughout the remainder of his life, Washington personally administered the Endowment, demonstrating an affectionate interest in the students receiving his aid. After his death in December of 1799, the charitable trust was conveyed through his will to the Trustees of Alexandria Academy. By 1825—the year after Robert E. Lee’s graduation—they had unwisely spent the principal and the Academy closed. For another generation, Washington’s family continued to provide educational opportunity to the very poor but, without the Endowment, their charitable efforts could not be sustained.</p>\n<p>In 2017, citizens came together to reestablish the Endowment as a 501(c)3 charity. Now the challenge is to replenish the Endowment so that it can resume its historic work. In keeping with Washington’s Last Will & Testament, revenues from the Endowment will be used entirely to provide a fine classical education to needy children, both in this country and abroad.</p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\" alt=\"Trumbull_GWashington_resign\" itemprop=\"image\" height=\"1962\" width=\"3000\" title=\"Trumbull_GWashington_resign\" onerror=\"this.style.display=\'none\'\" />\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\" alt=\"George_Washington\" itemprop=\"image\" height=\"180\" width=\"300\" title=\"George_Washington\" onerror=\"this.style.display=\'none\'\" />\n <p>“Nothing is more important than the education of youth.” - George Washington</p>\n','History & Mission','','publish','closed','closed','','history-mission','','','2020-02-06 22:34:36','2020-02-06 22:34:36','',0,'http://gwendowment.org/wordpress1/?page_id=37',0,'page','',0),(38,1,'2019-12-06 17:45:19','2019-12-06 17:45:19','','History & Mission','','inherit','closed','closed','','37-revision-v1','','','2019-12-06 17:45:19','2019-12-06 17:45:19','',37,'http://gwendowment.org/wordpress1/2019/12/06/37-revision-v1/',0,'revision','',0),(39,1,'2019-12-06 17:45:44','2019-12-06 17:45:44','\n <p> </p>\n<h2><strong>Leadership & Teamwork</strong></h2>\n<h4> <b>Board of Governors and Visitors</b></h4>\n<hr />\n<p>T. Robinson Ahlstrom, Bloomfield Hills, MI<br />\n<i>Chairman & CEO, GW Scholars Endowment<br />\nChair, Executive Committee</i></p>\n<p>James Caraher, Chicago, IL<br />\n<i>Principal, Caraher Corporation<br />\nChair, Real Estate Committee</i></p>\n<p>Dean A. Christiansen, New York, NY<br />\n<i>Principal, Acacia Capital</i></p>\n<p>George Cranmer, Oxfordshire, England<br />\n<i>Director, Cranmer Lawrence, LTD</i></p>\n<p>Jerome F. Dausman, Hamilton, NJ<br />\n<i>Director of Analytics, The Detroit Latin School<br />\nInterim Treasurer</i></p>\n<p>Paul Evans, Cincinnati, OH<br />\n<i>Director of Investments, Rosetta Partners</i></p>\n<p>Ronald Gardhouse<br />\n<i>V.P. Chrysler Corporation (Ret.)<br />\nChair, Budget & Finance Committee</i></p>\n<p>Jae Gardner, New York, NY<br />\n<i>Founder & President, The Ivy Key</i></p>\n<p>Dr. Arnold A. Kummerow<br />\n<i>Superintendent, Armada (MI) Area Schools (Ret.)</i></p>\n<p>John Lind, Huntington Beach, CA<br />\n<i>President, Lind & Associates<br />\nChair, Enterprise & Development Committee</i></p>\n<p>Andrew Lucaciu, Washington, DC<br />\n<i>Senior Program Analyst, F.E.M.A.</i></p>\n<p>F. Landey Patton, Lexington, VA<br />\n<i>Innkeeper, The Abigail Inn</i></p>\n<p>Kymberly Peer, Bloomfield Hills, MI<br />\n<i>Buyer/Director of Operations, Sposa Bella Couture Enterprise & Development Committee</i></p>\n<p>Dr. James Tooley, Manchester, England<br />\n<i>Professor of Education Policy, Newcastle University</i></p>\n<p>Curt Welling, Norwich, VT<br />\n<i>Senior Fellow, Tuck School of Management, Dartmouth College</i></p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\" alt=\"Biglin_Brothers_Racing_1148x294\" itemprop=\"image\" height=\"642\" width=\"1145\" title=\"Biglin_Brothers_Racing_1148x294\" onerror=\"this.style.display=\'none\'\" />\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi.jpg\" alt=\"“People who work together will win, whether it be against complex football defenses, or the problems of modern society.” - Vince Lombardi\" itemprop=\"image\" height=\"225\" width=\"300\" title=\"Vince_Lombardi\" onerror=\"this.style.display=\'none\'\" />\n <p>\"People who work together will win, whether it be against complex football defenses, or the problems of modern society.\"</strong></p>\n','Leadership & Teamwork','','publish','closed','closed','','leadership-and-teamwork','','','2020-02-07 18:08:26','2020-02-07 18:08:26','',0,'http://gwendowment.org/wordpress1/?page_id=39',0,'page','',0),(40,1,'2019-12-06 17:45:44','2019-12-06 17:45:44','','Leadership and Teamwork','','inherit','closed','closed','','39-revision-v1','','','2019-12-06 17:45:44','2019-12-06 17:45:44','',39,'http://gwendowment.org/wordpress1/2019/12/06/39-revision-v1/',0,'revision','',0),(43,1,'2019-12-06 17:46:21','2019-12-06 17:46:21','','Leadership & Teamwork','','inherit','closed','closed','','39-revision-v1','','','2019-12-06 17:46:21','2019-12-06 17:46:21','',39,'http://gwendowment.org/wordpress1/2019/12/06/39-revision-v1/',0,'revision','',0),(44,1,'2019-12-06 17:46:49','2019-12-06 17:46:49','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\" alt=\"Rockwell-Large\" itemprop=\"image\" height=\"1481\" width=\"2400\" title=\"Rockwell-Large\" onerror=\"this.style.display=\'none\'\" />\n <h2>Quality and Equality</h2>\n<hr />\n<p>Across the United States, too many K-12 schools are failing too many students. Two out of three eighth-graders can’t read proficiently. Two out of three score below proficient in math. Seventy-five percent of students are not proficient in civics. Nearly three out of four 12th-grade students cannot write proficiently. More than one million American students drop out of school every year and only one in four who do graduate from high school are ready for college in the four core subjects of English, reading, math and science.<br />\n<br />\nAmerican students now rank 25th in math, 17th in science and 14th in reading compared to students in 27 industrialized countries. Still more troubling is that fact that a longitudinal study of PISA results indicates that America’s high school students are continuing to fall further and further behind.</p>\n<p>And, in America’s K-12 schools, quality is not the only issue. Equality has proven to be an equally elusive goal. According to a 2009 Civil Rights Project report published by the Regents of the University of California, “Fifty-five years after the Brown decision, blacks and Latinos in American schools are more segregated than they have been in four decades.” The results are devastating. For African-American and Hispanic students across the country, dropout rates are close to 40 percent, compared to the national average of 27 percent. Only 4 percent of African American students and 11 percent of Hispanic students who do finish high school are ready for college in their core subjects.</p>\n<p>In fact, access to quality education is a global challenge. It is the next great civil right. In the area of education, many of the 2015 Millennial Development Goals set by the United Nations were not met—especially in Sub-Saharan Africa. According to a UNESCO report published at the September 8th (2014) Conference on Literacy and Sustainable Development, “Poor quality education is leaving a legacy of illiteracy more widespread than previously believed: one in four young people—175 million adolescents—is unable to read a single sentence.</p>\n<p>The Endowment exists solely to “provide direct aid to worthy scholars.” Whether here in the United States or abroad, its mission is to redeem what Thomas Jefferson called, “genius buried in poverty.”</p>\n <p> </p>\n<table>\n<tbody>\n<tr>\n<td valign=\"right\">“The Education that is best for the best is the education that is best for all.” </p>\n<p>— Robert Maynard Hutchins</td>\n</tr>\n</tbody>\n</table>\n<p> </p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\" alt=\"Robert_Hutchins\" itemprop=\"image\" height=\"239\" width=\"300\" title=\"Robert_Hutchins\" onerror=\"this.style.display=\'none\'\" />\n','Quality & Equality','','publish','closed','closed','','quality-equality','','','2020-02-07 17:48:31','2020-02-07 17:48:31','',0,'http://gwendowment.org/wordpress1/?page_id=44',0,'page','',0),(45,1,'2019-12-06 17:46:49','2019-12-06 17:46:49','','Quality & Equality','','inherit','closed','closed','','44-revision-v1','','','2019-12-06 17:46:49','2019-12-06 17:46:49','',44,'http://gwendowment.org/wordpress1/2019/12/06/44-revision-v1/',0,'revision','',0),(46,1,'2019-12-06 17:47:10','2019-12-06 17:47:10','\n <h2></h2>\n<h2></h2>\n <h2>Investment & Impact</h2>\n<hr />\n<p>Replenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”</p>\n<p>Because the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:</p>\n<ul>\n<li>Unusual Assets (such as a vehicle, work of art, or real estate),</li>\n<li>Wills or Trust Bequests,</li>\n<li>Charitable Gift Annuities,</li>\n<li>IRA Rollover Gifts,</li>\n<li>Appreciated Securities,</li>\n<li>The Gift of Life Insurance, and</li>\n<li>A Charitable Remainder Trust.</li>\n</ul>\n<p>Contributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.</p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\" alt=\"Browne_Henriette_-_A_Girl_Writing\" itemprop=\"image\" height=\"2509\" width=\"3198\" title=\"Browne_Henriette_-_A_Girl_Writing\" onerror=\"this.style.display=\'none\'\" />\n <p><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i><br />\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\" alt=\"Eli_Broad\" itemprop=\"image\" height=\"202\" width=\"300\" title=\"Eli_Broad\" onerror=\"this.style.display=\'none\'\" />\n <p>“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.”</p>\n<p>- Eli Broad </p>\n','Investment & Impact','','publish','closed','closed','','investment-impact','','','2020-02-07 22:06:38','2020-02-07 22:06:38','',0,'http://gwendowment.org/wordpress1/?page_id=46',0,'page','',0),(47,1,'2019-12-06 17:47:10','2019-12-06 17:47:10','','Investment & Impact','','inherit','closed','closed','','46-revision-v1','','','2019-12-06 17:47:10','2019-12-06 17:47:10','',46,'http://gwendowment.org/wordpress1/2019/12/06/46-revision-v1/',0,'revision','',0),(48,1,'2019-12-06 17:49:33','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2019-12-06 17:49:33','0000-00-00 00:00:00','',0,'http://gwendowment.org/wordpress1/?p=48',1,'nav_menu_item','',0),(49,1,'2019-12-06 17:49:33','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2019-12-06 17:49:33','0000-00-00 00:00:00','',0,'http://gwendowment.org/wordpress1/?p=49',1,'nav_menu_item','',0),(50,1,'2019-12-06 17:49:33','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2019-12-06 17:49:33','0000-00-00 00:00:00','',0,'http://gwendowment.org/wordpress1/?p=50',1,'nav_menu_item','',0),(51,1,'2019-12-06 17:51:21','2019-12-06 17:51:21',' ','','','publish','closed','closed','','51','','','2019-12-06 18:18:01','2019-12-06 18:18:01','',0,'http://gwendowment.org/wordpress1/?p=51',1,'nav_menu_item','',0),(52,1,'2019-12-06 17:51:21','2019-12-06 17:51:21',' ','','','publish','closed','closed','','52','','','2019-12-06 18:18:01','2019-12-06 18:18:01','',0,'http://gwendowment.org/wordpress1/?p=52',2,'nav_menu_item','',0),(53,1,'2019-12-06 17:51:21','2019-12-06 17:51:21',' ','','','publish','closed','closed','','53','','','2019-12-06 18:18:01','2019-12-06 18:18:01','',0,'http://gwendowment.org/wordpress1/?p=53',3,'nav_menu_item','',0),(54,1,'2019-12-06 17:51:21','2019-12-06 17:51:21',' ','','','publish','closed','closed','','54','','','2019-12-06 18:18:01','2019-12-06 18:18:01','',0,'http://gwendowment.org/wordpress1/?p=54',4,'nav_menu_item','',0),(55,1,'2019-12-06 18:13:15','2019-12-06 18:13:15','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n <p>The George Washington Scholars Endowment</p>\n <p>1785</p>\n','Front Page','','inherit','closed','closed','','30-revision-v1','','','2019-12-06 18:13:15','2019-12-06 18:13:15','',30,'http://gwendowment.org/wordpress1/2019/12/06/30-revision-v1/',0,'revision','',0),(56,1,'2019-12-06 18:16:45','2019-12-06 18:16:45','\n <h2>Education – The Birthright of Every Child</h2>\n<hr />\n<p><img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" /></p>\n<p>Every boy and girl born under heaven, of whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</p>\n<p>The very best schools understand that enabling this wonderful process—this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</p>\n<p>George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</p>\n<p>We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.” </p>\n<p>Faithfully,<br />\nT. Robinson Ahlstrom - Chairman</p>\n <h4>\"Give children in need a chance at the very best education through GW Scholars Fund and help them become the people that God meant them to be.\"</h4>\n <h3>Donate Now</h3>\n <p>Because a great education, full of wonder and awe, is the birthright of all. </p>\n <a href=\"http://gwendowment.org/wordpress1/investment-impact/\" target=\"_self\" role=\"button\">\n Donate\n </a>\n','A Word from the Chairman','','publish','closed','closed','','a-word-from-the-chairman','','','2020-02-07 22:46:49','2020-02-07 22:46:49','',0,'http://gwendowment.org/wordpress1/?page_id=56',0,'page','',0),(57,1,'2019-12-06 18:16:45','2019-12-06 18:16:45','','A Word from the Chairman','','inherit','closed','closed','','56-revision-v1','','','2019-12-06 18:16:45','2019-12-06 18:16:45','',56,'http://gwendowment.org/wordpress1/2019/12/06/56-revision-v1/',0,'revision','',0),(58,1,'2019-12-06 18:18:01','2019-12-06 18:18:01',' ','','','publish','closed','closed','','58','','','2019-12-06 18:18:01','2019-12-06 18:18:01','',0,'http://gwendowment.org/wordpress1/?p=58',5,'nav_menu_item','',0),(59,1,'2019-12-07 15:26:48','2019-12-07 15:26:48','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n <p>The George Washington Scholars Endowment</p>\n <p>1785</p>\n','Front Page','','inherit','closed','closed','','30-revision-v1','','','2019-12-07 15:26:48','2019-12-07 15:26:48','',30,'http://gwendowment.org/wordpress1/2019/12/07/30-revision-v1/',0,'revision','',0),(60,1,'2019-12-07 15:37:24','2019-12-07 15:37:24','','header layout','','publish','closed','closed','','header-layout','','','2019-12-07 15:37:24','2019-12-07 15:37:24','',0,'http://gwendowment.org/wordpress1/fl-builder-template/header-layout/',0,'fl-builder-template','',0),(61,1,'2019-12-07 15:37:24','2019-12-07 15:37:24','','header layout','','inherit','closed','closed','','60-revision-v1','','','2019-12-07 15:37:24','2019-12-07 15:37:24','',60,'http://gwendowment.org/wordpress1/2019/12/07/60-revision-v1/',0,'revision','',0),(62,1,'2019-12-07 15:40:06','2019-12-07 15:40:06','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n <p>The George Washington Scholars Endowment</p>\n <p>1785</p>\n','Front Page','','inherit','closed','closed','','30-revision-v1','','','2019-12-07 15:40:06','2019-12-07 15:40:06','',30,'http://gwendowment.org/wordpress1/2019/12/07/30-revision-v1/',0,'revision','',0),(63,1,'2019-12-07 15:58:52','2019-12-07 15:58:52','\n <h3>History & Mission</h3>\n<p>The scene of George Washington resigning his commission in the Maryland State House is the stuff of legend, beautifully depicted in John Trumbull’s magnificent oil painting on display in the Rotunda of the U.S. Capitol. General Washington’s renunciation of privilege and power made him an 18th century Cincinnatus - a model of public virtue and a mythological figure in the establishment of the world’s first great democracy.</p>\n<p>Less known, but no less remarkable, is the fact that soon after returning to his beloved Mount Vernon, General Washington penned a letter to Thomas Jefferson expressing his “inclination” to endow a school “for poor and orphaned children.” On the 17th of December, 1785, General Washington pledged £1,000 to create an Endowment “for the purpose of educating orphan children or the children of such poor and indigent persons as are unable to accomplish this by their own means.”</p>\n<p>Throughout the remainder of his life, Washington personally administered the Endowment, demonstrating an affectionate interest in the students receiving his aid. After his death in December of 1799, the charitable trust was conveyed through his will to the Trustees of Alexandria Academy. By 1825—the year after Robert E. Lee’s graduation—they had unwisely spent the principal and the Academy closed. For another generation, Washington’s family continued to provide educational opportunity to the very poor but, without the Endowment, their charitable efforts could not be sustained.</p>\n<p>In 2017, citizens came together to reestablish the Endowment as a 501(c)3 charity. Now the challenge is to replenish the Endowment so that it can resume its historic work. In keeping with Washington’s Last Will & Testament, revenues from the Endowment will be used entirely to provide a fine classical education to needy children, both in this country and abroad.</p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\" alt=\"Trumbull_GWashington_resign\" itemprop=\"image\" height=\"1962\" width=\"3000\" title=\"Trumbull_GWashington_resign\" onerror=\"this.style.display=\'none\'\" />\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\" alt=\"George_Washington\" itemprop=\"image\" height=\"180\" width=\"300\" title=\"George_Washington\" onerror=\"this.style.display=\'none\'\" />\n <p>“Nothing is more important than the education of youth.” - George Washington</p>\n','History & Mission','','inherit','closed','closed','','37-revision-v1','','','2019-12-07 15:58:52','2019-12-07 15:58:52','',37,'http://gwendowment.org/wordpress1/2019/12/07/37-revision-v1/',0,'revision','',0),(64,1,'2019-12-07 16:01:32','2019-12-07 16:01:32','\n <h3>History & Mission</h3>\n<p>The scene of George Washington resigning his commission in the Maryland State House is the stuff of legend, beautifully depicted in John Trumbull’s magnificent oil painting on display in the Rotunda of the U.S. Capitol. General Washington’s renunciation of privilege and power made him an 18th century Cincinnatus - a model of public virtue and a mythological figure in the establishment of the world’s first great democracy.</p>\n<p>Less known, but no less remarkable, is the fact that soon after returning to his beloved Mount Vernon, General Washington penned a letter to Thomas Jefferson expressing his “inclination” to endow a school “for poor and orphaned children.” On the 17th of December, 1785, General Washington pledged £1,000 to create an Endowment “for the purpose of educating orphan children or the children of such poor and indigent persons as are unable to accomplish this by their own means.”</p>\n<p>Throughout the remainder of his life, Washington personally administered the Endowment, demonstrating an affectionate interest in the students receiving his aid. After his death in December of 1799, the charitable trust was conveyed through his will to the Trustees of Alexandria Academy. By 1825—the year after Robert E. Lee’s graduation—they had unwisely spent the principal and the Academy closed. For another generation, Washington’s family continued to provide educational opportunity to the very poor but, without the Endowment, their charitable efforts could not be sustained.</p>\n<p>In 2017, citizens came together to reestablish the Endowment as a 501(c)3 charity. Now the challenge is to replenish the Endowment so that it can resume its historic work. In keeping with Washington’s Last Will & Testament, revenues from the Endowment will be used entirely to provide a fine classical education to needy children, both in this country and abroad.</p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\" alt=\"Trumbull_GWashington_resign\" itemprop=\"image\" height=\"1962\" width=\"3000\" title=\"Trumbull_GWashington_resign\" onerror=\"this.style.display=\'none\'\" />\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\" alt=\"George_Washington\" itemprop=\"image\" height=\"180\" width=\"300\" title=\"George_Washington\" onerror=\"this.style.display=\'none\'\" />\n <p>“Nothing is more important than the education of youth.” - George Washington</p>\n','History & Mission','','inherit','closed','closed','','37-revision-v1','','','2019-12-07 16:01:32','2019-12-07 16:01:32','',37,'http://gwendowment.org/wordpress1/2019/12/07/37-revision-v1/',0,'revision','',0),(65,1,'2019-12-07 16:34:25','2019-12-07 16:34:25','\n <h2>History & Mission</h2>\n<h4>\"GWSE is rooted in George Washington\'s original vision to provide quality education to all American children regardless of their means.\"</h4>\n<hr />\n<p>The scene of George Washington resigning his commission in the Maryland State House is the stuff of legend, beautifully depicted in John Trumbull’s magnificent oil painting on display in the Rotunda of the U.S. Capitol. General Washington’s renunciation of privilege and power made him an 18th century Cincinnatus - a model of public virtue and a mythological figure in the establishment of the world’s first great democracy.<br />\n<br />\nLess known, but no less remarkable, is the fact that soon after returning to his beloved Mount Vernon, General Washington penned a letter to Thomas Jefferson expressing his “inclination” to endow a school “for poor and orphaned children.” On the 17th of December, 1785, General Washington pledged £1,000 to create an Endowment “for the purpose of educating orphan children or the children of such poor and indigent persons as are unable to accomplish this by their own means.”</p>\n<p>Throughout the remainder of his life, Washington personally administered the Endowment, demonstrating an affectionate interest in the students receiving his aid. After his death in December of 1799, the charitable trust was conveyed through his will to the Trustees of Alexandria Academy. By 1825—the year after Robert E. Lee’s graduation—they had unwisely spent the principal and the Academy closed. For another generation, Washington’s family continued to provide educational opportunity to the very poor but, without the Endowment, their charitable efforts could not be sustained.</p>\n<p>In 2017, citizens came together to reestablish the Endowment as a 501(c)3 charity. Now the challenge is to replenish the Endowment so that it can resume its historic work. In keeping with Washington’s Last Will & Testament, revenues from the Endowment will be used entirely to provide a fine classical education to needy children, both in this country and abroad.</p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\" alt=\"Trumbull_GWashington_resign\" itemprop=\"image\" height=\"1962\" width=\"3000\" title=\"Trumbull_GWashington_resign\" onerror=\"this.style.display=\'none\'\" />\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\" alt=\"George_Washington\" itemprop=\"image\" height=\"180\" width=\"300\" title=\"George_Washington\" onerror=\"this.style.display=\'none\'\" />\n <p>“Nothing is more important than the education of youth.” - George Washington</p>\n','History & Mission','','inherit','closed','closed','','37-revision-v1','','','2019-12-07 16:34:25','2019-12-07 16:34:25','',37,'http://gwendowment.org/wordpress1/2019/12/07/37-revision-v1/',0,'revision','',0),(66,1,'2019-12-07 16:37:29','2019-12-07 16:37:29','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n <p>The George Washington Scholars Endowment</p>\n <p>1785</p>\n','Front Page','','inherit','closed','closed','','30-revision-v1','','','2019-12-07 16:37:29','2019-12-07 16:37:29','',30,'http://gwendowment.org/wordpress1/2019/12/07/30-revision-v1/',0,'revision','',0),(67,1,'2019-12-07 16:40:43','2019-12-07 16:40:43','\n <h2>History & Mission</h2>\n<h4>\"GWSE is rooted in George Washington\'s original vision to provide quality education to all American children regardless of their means.\"</h4>\n<hr />\n<p>The scene of George Washington resigning his commission in the Maryland State House is the stuff of legend, beautifully depicted in John Trumbull’s magnificent oil painting on display in the Rotunda of the U.S. Capitol. General Washington’s renunciation of privilege and power made him an 18th century Cincinnatus - a model of public virtue and a mythological figure in the establishment of the world’s first great democracy.<br />\n<br />\nLess known, but no less remarkable, is the fact that soon after returning to his beloved Mount Vernon, General Washington penned a letter to Thomas Jefferson expressing his “inclination” to endow a school “for poor and orphaned children.” On the 17th of December, 1785, General Washington pledged £1,000 to create an Endowment “for the purpose of educating orphan children or the children of such poor and indigent persons as are unable to accomplish this by their own means.”</p>\n<p>Throughout the remainder of his life, Washington personally administered the Endowment, demonstrating an affectionate interest in the students receiving his aid. After his death in December of 1799, the charitable trust was conveyed through his will to the Trustees of Alexandria Academy. By 1825—the year after Robert E. Lee’s graduation—they had unwisely spent the principal and the Academy closed. For another generation, Washington’s family continued to provide educational opportunity to the very poor but, without the Endowment, their charitable efforts could not be sustained.</p>\n<p>In 2017, citizens came together to reestablish the Endowment as a 501(c)3 charity. Now the challenge is to replenish the Endowment so that it can resume its historic work. In keeping with Washington’s Last Will & Testament, revenues from the Endowment will be used entirely to provide a fine classical education to needy children, both in this country and abroad.</p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\" alt=\"Trumbull_GWashington_resign\" itemprop=\"image\" height=\"1962\" width=\"3000\" title=\"Trumbull_GWashington_resign\" onerror=\"this.style.display=\'none\'\" />\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\" alt=\"George_Washington\" itemprop=\"image\" height=\"180\" width=\"300\" title=\"George_Washington\" onerror=\"this.style.display=\'none\'\" />\n <p>“Nothing is more important than the education of youth.” - George Washington</p>\n','History & Mission','','inherit','closed','closed','','37-revision-v1','','','2019-12-07 16:40:43','2019-12-07 16:40:43','',37,'http://gwendowment.org/wordpress1/2019/12/07/37-revision-v1/',0,'revision','',0),(68,1,'2019-12-07 16:42:04','2019-12-07 16:42:04','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n <p>The George Washington Scholars Endowment</p>\n <p>1785</p>\n','Front Page','','inherit','closed','closed','','30-revision-v1','','','2019-12-07 16:42:04','2019-12-07 16:42:04','',30,'http://gwendowment.org/wordpress1/2019/12/07/30-revision-v1/',0,'revision','',0),(69,1,'2019-12-07 16:45:45','2019-12-07 16:45:45','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n <p>The George Washington Scholars Endowment</p>\n <p>1785</p>\n','Front Page','','inherit','closed','closed','','30-revision-v1','','','2019-12-07 16:45:45','2019-12-07 16:45:45','',30,'http://gwendowment.org/wordpress1/2019/12/07/30-revision-v1/',0,'revision','',0),(70,1,'2019-12-07 16:50:20','2019-12-07 16:50:20','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n <p>The George Washington Scholars Endowment</p>\n <p>1785</p>\n','Front Page','','inherit','closed','closed','','30-revision-v1','','','2019-12-07 16:50:20','2019-12-07 16:50:20','',30,'http://gwendowment.org/wordpress1/2019/12/07/30-revision-v1/',0,'revision','',0),(71,1,'2019-12-07 17:27:12','2019-12-07 17:27:12','\n <h2>History & Mission</h2>\n<h4>\"GWSE is rooted in George Washington\'s original vision to provide quality education to all American children regardless of their means.\"</h4>\n<hr />\n<p>The scene of George Washington resigning his commission in the Maryland State House is the stuff of legend, beautifully depicted in John Trumbull’s magnificent oil painting on display in the Rotunda of the U.S. Capitol. General Washington’s renunciation of privilege and power made him an 18th century Cincinnatus - a model of public virtue and a mythological figure in the establishment of the world’s first great democracy.<br />\n<br />\nLess known, but no less remarkable, is the fact that soon after returning to his beloved Mount Vernon, General Washington penned a letter to Thomas Jefferson expressing his “inclination” to endow a school “for poor and orphaned children.” On the 17th of December, 1785, General Washington pledged £1,000 to create an Endowment “for the purpose of educating orphan children or the children of such poor and indigent persons as are unable to accomplish this by their own means.”</p>\n<p>Throughout the remainder of his life, Washington personally administered the Endowment, demonstrating an affectionate interest in the students receiving his aid. After his death in December of 1799, the charitable trust was conveyed through his will to the Trustees of Alexandria Academy. By 1825—the year after Robert E. Lee’s graduation—they had unwisely spent the principal and the Academy closed. For another generation, Washington’s family continued to provide educational opportunity to the very poor but, without the Endowment, their charitable efforts could not be sustained.</p>\n<p>In 2017, citizens came together to reestablish the Endowment as a 501(c)3 charity. Now the challenge is to replenish the Endowment so that it can resume its historic work. In keeping with Washington’s Last Will & Testament, revenues from the Endowment will be used entirely to provide a fine classical education to needy children, both in this country and abroad.</p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Trumbull_GWashington_resign.jpg\" alt=\"Trumbull_GWashington_resign\" itemprop=\"image\" height=\"1962\" width=\"3000\" title=\"Trumbull_GWashington_resign\" onerror=\"this.style.display=\'none\'\" />\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/George_Washington.jpg\" alt=\"George_Washington\" itemprop=\"image\" height=\"180\" width=\"300\" title=\"George_Washington\" onerror=\"this.style.display=\'none\'\" />\n <p>“Nothing is more important than the education of youth.” - George Washington</p>\n','History & Mission','','inherit','closed','closed','','37-revision-v1','','','2019-12-07 17:27:12','2019-12-07 17:27:12','',37,'http://gwendowment.org/wordpress1/2019/12/07/37-revision-v1/',0,'revision','',0),(72,1,'2019-12-10 14:13:24','2019-12-10 14:13:24','\n <p>Investment & Impact</p>\n<p>Replenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”</p>\n<p>Because the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:</p>\n<ul>\n<li>Unusual Assets (such as a vehicle, work of art, or real estate),</li>\n<li>Wills or Trust Bequests,</li>\n<li>Charitable Gift Annuities,</li>\n<li>IRA Rollover Gifts,</li>\n<li>Appreciated Securities,</li>\n<li>The Gift of Life Insurance, and</li>\n<li>A Charitable Remainder Trust.</li>\n</ul>\n<p>Contributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.</p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\" alt=\"Browne_Henriette_-_A_Girl_Writing\" itemprop=\"image\" height=\"2509\" width=\"3198\" title=\"Browne_Henriette_-_A_Girl_Writing\" onerror=\"this.style.display=\'none\'\" />\n <table>\n<tbody>\n<tr>\n<td align=\"center\">\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\" /> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\n</td>\n</tr>\n</tbody>\n</table>\n<p> </p>\n <p><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i><br />\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\" alt=\"Eli_Broad\" itemprop=\"image\" height=\"202\" width=\"300\" title=\"Eli_Broad\" onerror=\"this.style.display=\'none\'\" />\n <p>“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.” - Eli Broad</p>\n','Investment & Impact','','inherit','closed','closed','','46-revision-v1','','','2019-12-10 14:13:24','2019-12-10 14:13:24','',46,'http://gwendowment.org/wordpress1/2019/12/10/46-revision-v1/',0,'revision','',0),(73,1,'2019-12-10 14:17:26','2019-12-10 14:17:26','\n <p>Investment & Impact</p>\n<p>Replenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”</p>\n<p>Because the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:</p>\n<ul>\n<li>Unusual Assets (such as a vehicle, work of art, or real estate),</li>\n<li>Wills or Trust Bequests,</li>\n<li>Charitable Gift Annuities,</li>\n<li>IRA Rollover Gifts,</li>\n<li>Appreciated Securities,</li>\n<li>The Gift of Life Insurance, and</li>\n<li>A Charitable Remainder Trust.</li>\n</ul>\n<p>Contributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.</p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\" alt=\"Browne_Henriette_-_A_Girl_Writing\" itemprop=\"image\" height=\"2509\" width=\"3198\" title=\"Browne_Henriette_-_A_Girl_Writing\" onerror=\"this.style.display=\'none\'\" />\n <table>\n<tbody>\n<tr>\n<td align=\"center\">\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\" /> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\n</td>\n</tr>\n</tbody>\n</table>\n<p> </p>\n <p><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i><br />\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\" alt=\"Eli_Broad\" itemprop=\"image\" height=\"202\" width=\"300\" title=\"Eli_Broad\" onerror=\"this.style.display=\'none\'\" />\n <p>“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.” - Eli Broad</p>\n','Investment & Impact','','inherit','closed','closed','','46-revision-v1','','','2019-12-10 14:17:26','2019-12-10 14:17:26','',46,'http://gwendowment.org/wordpress1/2019/12/10/46-revision-v1/',0,'revision','',0),(75,1,'2020-01-27 17:57:05','2020-01-27 17:57:05','','newracingbrothers','','inherit','open','closed','','newracingbrothers','','','2020-01-27 18:00:16','2020-01-27 18:00:16','',39,'http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/newracingbrothers.jpg',0,'attachment','image/jpeg',0),(76,1,'2020-01-28 17:05:29','2020-01-28 17:05:29','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n <p><em>Discover and develop genius buried in poverty.</em></p>\n <a href=\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\" target=\"_self\" role=\"button\">\n Find out how\n </a>\n','Home page','','publish','closed','closed','','home-page','','','2020-02-07 22:42:55','2020-02-07 22:42:55','',0,'http://gwendowment.org/wordpress1/?page_id=76',0,'page','',0),(77,1,'2020-01-28 17:05:29','2020-01-28 17:05:29','','Home page','','inherit','closed','closed','','76-revision-v1','','','2020-01-28 17:05:29','2020-01-28 17:05:29','',76,'http://gwendowment.org/wordpress1/2020/01/28/76-revision-v1/',0,'revision','',0),(79,1,'2020-01-28 17:14:38','2020-01-28 17:14:38','','Front Page','','trash','closed','closed','','__trashed','','','2020-01-28 17:14:38','2020-01-28 17:14:38','',0,'http://gwendowment.org/wordpress1/?post_type=fl-theme-layout&p=79',0,'fl-theme-layout','',0),(80,1,'2020-01-28 17:14:38','2020-01-28 17:14:38','','Front Page','','inherit','closed','closed','','79-revision-v1','','','2020-01-28 17:14:38','2020-01-28 17:14:38','',79,'http://gwendowment.org/wordpress1/2020/01/28/79-revision-v1/',0,'revision','',0),(81,1,'2020-01-28 17:19:09','2020-01-28 17:19:09','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n <p>The George Washington Scholars Endowment</p>\n <p>1785</p>\n','Copy of Front Page','','trash','closed','closed','','front-page-copy__trashed','','','2020-01-31 18:38:50','2020-01-31 18:38:50','',0,'http://gwendowment.org/wordpress1/?post_type=fl-theme-layout&p=81',0,'fl-theme-layout','',0),(82,1,'2020-01-28 17:19:09','2020-01-28 17:19:09','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n <p>The George Washington Scholars Endowment</p>\n <p>1785</p>\n','Copy of Front Page','','inherit','closed','closed','','81-revision-v1','','','2020-01-28 17:19:09','2020-01-28 17:19:09','',81,'http://gwendowment.org/wordpress1/2020/01/28/81-revision-v1/',0,'revision','',0),(83,1,'2020-01-30 17:25:09','2020-01-30 17:25:09','','tr','','inherit','open','closed','','tr','','','2020-01-30 17:25:09','2020-01-30 17:25:09','',56,'http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png',0,'attachment','image/png',0),(88,1,'2020-01-31 20:42:42','2020-01-31 20:42:42','\n <p><strong>The George Washington Scholars Endowment</strong></p>\n <p><strong>1785</strong></p>\n <p>Discover and develop genius buried in poverty </p>\n <a href=\"\" target=\"_self\" role=\"button\">\n Here\'s how\n </a>\n','Copy of Front Page','','publish','closed','closed','','front-page-copy','','','2020-02-06 16:13:11','2020-02-06 16:13:11','',0,'http://gwendowment.org/wordpress1/?post_type=fl-theme-layout&p=88',0,'fl-theme-layout','',0),(89,1,'2020-01-31 18:40:50','2020-01-31 18:40:50','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n <p>The George Washington Scholars Endowment</p>\n <p>1785</p>\n','Copy of Front Page','','inherit','closed','closed','','88-revision-v1','','','2020-01-31 18:40:50','2020-01-31 18:40:50','',88,'http://gwendowment.org/wordpress1/2020/01/31/88-revision-v1/',0,'revision','',0),(93,1,'2020-01-31 19:16:22','2020-01-31 19:16:22','','new homepage painting','','inherit','open','closed','','new-homepage-painting','','','2020-01-31 19:16:22','2020-01-31 19:16:22','',88,'http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/new-homepage-painting.jpg',0,'attachment','image/jpeg',0),(94,1,'2020-01-31 19:27:10','2020-01-31 19:27:10','','homepage painting another option','','inherit','open','closed','','homepage-painting-another-option','','','2020-01-31 19:27:10','2020-01-31 19:27:10','',88,'http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/homepage-painting-another-option.jpg',0,'attachment','image/jpeg',0),(95,1,'2020-01-31 19:33:08','2020-01-31 19:33:08','\n <p>The George Washington Scholars Endowment</p>\n <p>1785</p>\n <p>Help discover and develop genius buried in poverty </p>\n <a href=\"\" target=\"_self\" role=\"button\">\n Here\'s how\n </a>\n','Copy of Front Page','','inherit','closed','closed','','88-revision-v1','','','2020-01-31 19:33:08','2020-01-31 19:33:08','',88,'http://gwendowment.org/wordpress1/2020/01/31/88-revision-v1/',0,'revision','',0),(96,1,'2020-01-31 19:51:19','2020-01-31 19:51:19','\n <p><strong>The George Washington Scholars Endowment</strong></p>\n <p><strong>1785</strong></p>\n <p>Help discover and develop genius buried in poverty </p>\n <a href=\"\" target=\"_self\" role=\"button\">\n Here\'s how\n </a>\n','Copy of Front Page','','inherit','closed','closed','','88-revision-v1','','','2020-01-31 19:51:19','2020-01-31 19:51:19','',88,'http://gwendowment.org/wordpress1/2020/01/31/88-revision-v1/',0,'revision','',0),(97,1,'2020-01-31 20:42:42','2020-01-31 20:42:42','\n <p><strong>The George Washington Scholars Endowment</strong></p>\n <p><strong>1785</strong></p>\n <p>Discover and develop genius buried in poverty </p>\n <a href=\"\" target=\"_self\" role=\"button\">\n Here\'s how\n </a>\n','Copy of Front Page','','inherit','closed','closed','','88-revision-v1','','','2020-01-31 20:42:42','2020-01-31 20:42:42','',88,'http://gwendowment.org/wordpress1/2020/01/31/88-revision-v1/',0,'revision','',0),(98,1,'2020-01-31 20:48:46','2020-01-31 20:48:46','\n <p><strong>The George Washington Scholars Endowment</strong></p>\n <p><strong>1785</strong></p>\n <p>Discover and develop genius buried in poverty </p>\n <a href=\"\" target=\"_self\" role=\"button\">\n Here\'s how\n </a>\n','Copy of Front Page','','inherit','closed','closed','','88-revision-v1','','','2020-01-31 20:48:46','2020-01-31 20:48:46','',88,'http://gwendowment.org/wordpress1/2020/01/31/88-revision-v1/',0,'revision','',0),(99,1,'2020-01-31 21:03:01','2020-01-31 21:03:01','\n <p><strong>Investment & Impact</strong></p>\n <p>Replenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”</p>\n<p>Because the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:</p>\n<ul>\n<li>Unusual Assets (such as a vehicle, work of art, or real estate),</li>\n<li>Wills or Trust Bequests,</li>\n<li>Charitable Gift Annuities,</li>\n<li>IRA Rollover Gifts,</li>\n<li>Appreciated Securities,</li>\n<li>The Gift of Life Insurance, and</li>\n<li>A Charitable Remainder Trust.</li>\n</ul>\n<p>Contributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.</p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\" alt=\"Browne_Henriette_-_A_Girl_Writing\" itemprop=\"image\" height=\"2509\" width=\"3198\" title=\"Browne_Henriette_-_A_Girl_Writing\" onerror=\"this.style.display=\'none\'\" />\n <table>\n<tbody>\n<tr>\n<td align=\"center\">\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\" /> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\n</td>\n</tr>\n</tbody>\n</table>\n<p> </p>\n <p><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i><br />\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\" alt=\"Eli_Broad\" itemprop=\"image\" height=\"202\" width=\"300\" title=\"Eli_Broad\" onerror=\"this.style.display=\'none\'\" />\n <p><strong>“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.”</strong></p>\n<p><strong>- Eli Broad</strong></p>\n','Investment & Impact','','inherit','closed','closed','','46-revision-v1','','','2020-01-31 21:03:01','2020-01-31 21:03:01','',46,'http://gwendowment.org/wordpress1/2020/01/31/46-revision-v1/',0,'revision','',0),(100,1,'2020-01-31 21:04:30','2020-01-31 21:04:30','\n <h2>Education – The Birthright of Every Child</h2>\n<p><img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" />Every boy and girl in every place born into whatever circumstance deserves a chance to explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived. Enabling this process of human flourishing is what education is all about. In fact, the Latin root for the word “educate” is <i>ducere,</i> means to “draw out.” The best schools do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation. </p>\n<p>From colonial times until the mid-twentieth century, America’s decentralized scheme of local citizen-led academies accomplished this to such a degree that a unique national character was formed. Combining literature-based learning with scientific inquiry in an environment effused with moral seriousness, these schools—many instructing several grades in one room—helped to make the United States the most inclusive, inventive and prosperous nation in all human history.</p>\n<p>This didn’t just happen. It was the grand design and personal priority of our nation’s founders, several of whom also founded schools. Ben Franklin, a product of Boston Latin, carried the classical model to create a free school in Philadelphia—a school which became the University of Pennsylvania. Thomas Jefferson created an entire system of classical schools for Virginia and then founded The University of Virginia. On the 17th of December 1785, George Washington created an Endowment and established a free Latin school in his hometown of Alexandria, Virginia. Long before “diversity” became fashionable, Washington’s school was educating women, African Americans and the very poor—becoming known as “the birthplace of universal education in the United States.” </p>\n<p>Until the end of his life, including the eight years of his Presidency, George Washington remained personally engaged in the Endowment’s work, annually granting scholarships and making personal inquiries regarding the welfare of the boys and girls he supported. Upon his death, the Endowment’s significant funds were transferred to other managers who unwisely spent the principle, forcing Washington’s great charitable work to cease.</p>\n<p>After a hiatus of almost two centuries, a small group of citizens have come together to re-establish and replenish Washington’s Endowment so that it can resume its historic work—serving youth from every circumstance and every culture whose personal promise is not matched by their family’s ability to secure the inestimable gift of a classical education. </p>\n<p>Today, that work includes designing, building, maintaining and supporting independent classical schools here in the United States and providing financial assistance to some of the small private academies by which the world’s poorest people are education their own children.</p>\n<p>We are just getting started. We welcome your support and active engagement. In the words of Robert Frost, we have “miles to go and promises to keep.”</p>\n<p>Faithfully,</p>\n<p>T. Robinson Ahlstrom - Chairman<br />\n </p>\n','A Word from the Chairman','','inherit','closed','closed','','56-revision-v1','','','2020-01-31 21:04:30','2020-01-31 21:04:30','',56,'http://gwendowment.org/wordpress1/2020/01/31/56-revision-v1/',0,'revision','',0),(101,1,'2020-01-31 21:09:14','2020-01-31 21:09:14','\n <p><strong>Quality and Equality</strong></p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\" alt=\"Rockwell-Large\" itemprop=\"image\" height=\"1481\" width=\"2400\" title=\"Rockwell-Large\" onerror=\"this.style.display=\'none\'\" />\n <p>Across the United States, too many K-12 schools are failing too many students. Two out of three eighth-graders can’t read proficiently. Two out of three score below proficient in math. Seventy-five percent of students are not proficient in civics. Nearly three out of four 12th-grade students cannot write proficiently. More than one million American students drop out of school every year and only one in four who do graduate from high school are ready for college in the four core subjects of English, reading, math and science.</p>\n<p>American students now rank 25th in math, 17th in science and 14th in reading compared to students in 27 industrialized countries. Still more troubling is that fact that a longitudinal study of PISA results indicates that America’s high school students are continuing to fall further and further behind.</p>\n<p>And, in America’s K-12 schools, quality is not the only issue. Equality has proven to be an equally elusive goal. According to a 2009 Civil Rights Project report published by the Regents of the University of California, “Fifty-five years after the Brown decision, blacks and Latinos in American schools are more segregated than they have been in four decades.” The results are devastating. For African-American and Hispanic students across the country, dropout rates are close to 40 percent, compared to the national average of 27 percent. Only 4 percent of African American students and 11 percent of Hispanic students who do finish high school are ready for college in their core subjects.</p>\n<p>In fact, access to quality education is a global challenge. It is the next great civil right. In the area of education, many of the 2015 Millennial Development Goals set by the United Nations were not met—especially in Sub-Saharan Africa. According to a UNESCO report published at the September 8th (2014) Conference on Literacy and Sustainable Development, “Poor quality education is leaving a legacy of illiteracy more widespread than previously believed: one in four young people—175 million adolescents—is unable to read a single sentence.</p>\n<p>The Endowment exists solely to “provide direct aid to worthy scholars.” Whether here in the United States or abroad, its mission is to redeem what Thomas Jefferson called, “genius buried in poverty.”</p>\n <table>\n<tbody>\n<tr>\n<td valign=\"right\"><strong>“The Education that is best for the best is the education that is best for all.” </strong></p>\n<p><strong>— Robert Maynard Hutchins</strong></td>\n</tr>\n</tbody>\n</table>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\" alt=\"Robert_Hutchins\" itemprop=\"image\" height=\"239\" width=\"300\" title=\"Robert_Hutchins\" onerror=\"this.style.display=\'none\'\" />\n','Quality & Equality','','inherit','closed','closed','','44-revision-v1','','','2020-01-31 21:09:14','2020-01-31 21:09:14','',44,'http://gwendowment.org/wordpress1/2020/01/31/44-revision-v1/',0,'revision','',0),(102,1,'2020-01-31 21:10:16','2020-01-31 21:10:16','\n <h3><strong>Leadership & Teamwork</strong></h3>\n<table>\n<tbody>\n<tr>\n<td></td>\n<td align=\"left\"><b>Board of Governors and Visitors</b></p>\n<p>T. Robinson Ahlstrom, Bloomfield Hills, MI<br />\n<i>Chairman & CEO, GW Scholars Endowment<br />\nChair, Executive Committee</i></p>\n<p>James Caraher, Chicago, IL<br />\n<i>Principal, Caraher Corporation<br />\nChair, Real Estate Committee</i></p>\n<p>Dean A. Christiansen, New York, NY<br />\n<i>Principal, Acacia Capital</i></p>\n<p>George Cranmer, Oxfordshire, England<br />\n<i>Director, Cranmer Lawrence, LTD</i></p>\n<p>Jerome F. Dausman, Hamilton, NJ<br />\n<i>Director of Analytics, The Detroit Latin School<br />\nInterim Treasurer</i></p>\n<p>Paul Evans, Cincinnati, OH<br />\n<i>Director of Investments, Rosetta Partners</i></p>\n<p>Ronald Gardhouse<br />\n<i>V.P. Chrysler Corporation (Ret.)<br />\nChair, Budget & Finance Committee</i></p>\n<p>Jae Gardner, New York, NY<br />\n<i>Founder & President, The Ivy Key</i></p>\n<p>Dr. Arnold A. Kummerow<br />\n<i>Superintendent, Armada (MI) Area Schools (Ret.)</i></p>\n<p>John Lind, Huntington Beach, CA<br />\n<i>President, Lind & Associates<br />\nChair, Enterprise & Development Committee</i></p>\n<p>Andrew Lucaciu, Washington, DC<br />\n<i>Senior Program Analyst, F.E.M.A.</i></p>\n<p>F. Landey Patton, Lexington, VA<br />\n<i>Innkeeper, The Abigail Inn</i></p>\n<p>Kymberly Peer, Bloomfield Hills, MI<br />\n<i>Buyer/Director of Operations, Sposa Bella Couture Enterprise & Development Committee</i></p>\n<p>Dr. James Tooley, Manchester, England<br />\n<i>Professor of Education Policy, Newcastle University</i></p>\n<p>Curt Welling, Norwich, VT<br />\n<i>Senior Fellow, Tuck School of Management, Dartmouth College</i></td>\n</tr>\n</tbody>\n</table>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\" alt=\"Biglin_Brothers_Racing_1148x294\" itemprop=\"image\" height=\"642\" width=\"1145\" title=\"Biglin_Brothers_Racing_1148x294\" onerror=\"this.style.display=\'none\'\" />\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi.jpg\" alt=\"“People who work together will win, whether it be against complex football defenses, or the problems of modern society.” - Vince Lombardi\" itemprop=\"image\" height=\"225\" width=\"300\" title=\"Vince_Lombardi\" onerror=\"this.style.display=\'none\'\" />\n <p><strong>\"People who work together will win, whether it be against complex football defenses, or the problems of modern society.\"</strong></p>\n','Leadership & Teamwork','','inherit','closed','closed','','39-revision-v1','','','2020-01-31 21:10:16','2020-01-31 21:10:16','',39,'http://gwendowment.org/wordpress1/2020/01/31/39-revision-v1/',0,'revision','',0),(105,1,'2020-02-06 18:36:44','2020-02-06 18:36:44','\n <p><strong>The George Washington Scholars Endowment</strong></p>\n <p><strong>1785</strong></p>\n <p>Discover and develop genius buried in poverty </p>\n <a href=\"\" target=\"_self\" role=\"button\">\n Here\'s how\n </a>\n','Copy of Copy of Front Page','','trash','closed','closed','','front-page-copy-copy__trashed','','','2020-02-06 18:36:44','2020-02-06 18:36:44','',0,'http://gwendowment.org/wordpress1/?post_type=fl-theme-layout&p=105',0,'fl-theme-layout','',0),(106,1,'2020-02-06 16:11:34','2020-02-06 16:11:34','','front page','','publish','closed','closed','','front-page','','','2020-02-06 16:11:34','2020-02-06 16:11:34','',0,'http://gwendowment.org/wordpress1/fl-builder-template/front-page/',0,'fl-builder-template','',0),(107,1,'2020-02-06 16:11:34','2020-02-06 16:11:34','','front page','','inherit','closed','closed','','106-revision-v1','','','2020-02-06 16:11:34','2020-02-06 16:11:34','',106,'http://gwendowment.org/wordpress1/2020/02/06/106-revision-v1/',0,'revision','',0),(108,1,'2020-02-06 16:20:31','2020-02-06 16:20:31','','1950.1514 - An Alcove in the Art Students\' League','','inherit','open','closed','','1950-1514-an-alcove-in-the-art-students-league','','','2020-02-06 16:20:31','2020-02-06 16:20:31','',76,'http://gwendowment.org/wordpress1/wp-content/uploads/2020/02/1950.1514-An-Alcove-in-the-Art-Students-League.jpg',0,'attachment','image/jpeg',0),(109,1,'2020-02-06 17:28:04','2020-02-06 17:28:04','\n<p><strong>The George Washington Scholars Endowment</strong></p>\n <p>Discover and develop genius buried in poverty </p>\n <a href=\"\" target=\"_self\" role=\"button\">\n Inspire Young Minds Now\n </a>\n','Home page','','inherit','closed','closed','','76-revision-v1','','','2020-02-06 17:28:04','2020-02-06 17:28:04','',76,'http://gwendowment.org/wordpress1/2020/02/06/76-revision-v1/',0,'revision','',0),(110,1,'2020-02-06 17:31:03','2020-02-06 17:31:03','','template without GW taken out','','publish','closed','closed','','template-without-gw-taken-out','','','2020-02-06 17:31:03','2020-02-06 17:31:03','',0,'http://gwendowment.org/wordpress1/fl-builder-template/template-without-gw-taken-out/',0,'fl-builder-template','',0),(111,1,'2020-02-06 17:31:03','2020-02-06 17:31:03','','template without GW taken out','','inherit','closed','closed','','110-revision-v1','','','2020-02-06 17:31:03','2020-02-06 17:31:03','',110,'http://gwendowment.org/wordpress1/2020/02/06/110-revision-v1/',0,'revision','',0),(112,1,'2020-02-06 18:14:00','2020-02-06 18:14:00','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n<p>The George Washington Scholars Endowment</p>\n<p>1787</p>\n <p>Discover and develop genius buried in poverty </p>\n <a href=\"\" target=\"_self\" role=\"button\">\n Inspire Young Minds Now\n </a>\n','Home page','','inherit','closed','closed','','76-revision-v1','','','2020-02-06 18:14:00','2020-02-06 18:14:00','',76,'http://gwendowment.org/wordpress1/2020/02/06/76-revision-v1/',0,'revision','',0),(113,1,'2020-02-06 18:15:58','2020-02-06 18:15:58','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n<p>The George Washington Scholars Endowment</p>\n<p>1785</p>\n <p>Discover and develop genius buried in poverty </p>\n <a href=\"\" target=\"_self\" role=\"button\">\n Inspire Young Minds Now\n </a>\n','Home page','','inherit','closed','closed','','76-revision-v1','','','2020-02-06 18:15:58','2020-02-06 18:15:58','',76,'http://gwendowment.org/wordpress1/2020/02/06/76-revision-v1/',0,'revision','',0),(114,1,'2020-02-06 18:34:32','2020-02-06 18:34:32','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n<p>The George Washington Scholars Endowment</p>\n<p>1785</p>\n <p>Discover and develop genius buried in poverty </p>\n <a href=\"\" target=\"_self\" role=\"button\">\n Inspire Young Minds Now\n </a>\n','Home page','','inherit','closed','closed','','76-revision-v1','','','2020-02-06 18:34:32','2020-02-06 18:34:32','',76,'http://gwendowment.org/wordpress1/2020/02/06/76-revision-v1/',0,'revision','',0),(115,1,'2020-02-06 18:36:44','2020-02-06 18:36:44','\n <p><strong>The George Washington Scholars Endowment</strong></p>\n <p><strong>1785</strong></p>\n <p>Discover and develop genius buried in poverty </p>\n <a href=\"\" target=\"_self\" role=\"button\">\n Here\'s how\n </a>\n','Copy of Copy of Front Page','','inherit','closed','closed','','105-revision-v1','','','2020-02-06 18:36:44','2020-02-06 18:36:44','',105,'http://gwendowment.org/wordpress1/2020/02/06/105-revision-v1/',0,'revision','',0),(116,1,'2020-02-06 18:46:03','2020-02-06 18:46:03','\n <p>Contact: info@gwendowment.org</p>\n<p>P. O. Box 2356,</p>\n<p>Detroit, MI 48202</p>\n','GW footer','','publish','closed','closed','','gw-footer','','','2020-02-06 21:48:14','2020-02-06 21:48:14','',0,'http://gwendowment.org/wordpress1/?post_type=fl-theme-layout&p=116',0,'fl-theme-layout','',0),(117,1,'2020-02-06 18:38:03','2020-02-06 18:38:03','','GW footer','','inherit','closed','closed','','116-revision-v1','','','2020-02-06 18:38:03','2020-02-06 18:38:03','',116,'http://gwendowment.org/wordpress1/2020/02/06/116-revision-v1/',0,'revision','',0),(118,1,'2020-02-06 18:46:03','2020-02-06 18:46:03','\n <p>Contact: info@gwendowment.org</p>\n<p>P. O. Box 2356,</p>\n<p>Detroit, MI 48202</p>\n','GW footer','','inherit','closed','closed','','116-revision-v1','','','2020-02-06 18:46:03','2020-02-06 18:46:03','',116,'http://gwendowment.org/wordpress1/2020/02/06/116-revision-v1/',0,'revision','',0),(119,1,'2020-02-06 21:27:13','2020-02-06 21:27:13','<img title=\"gwselogo\" src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" width=\"112\" height=\"83\" />\r\n\r\nThe George Washington Scholars Endowment\r\n\r\n1785\r\n\r\nDiscover and develop genius buried in poverty\r\n\r\n<a role=\"button\" target=\"_self\">\r\nInspire Young Minds Now\r\n</a>','Home page','','inherit','closed','closed','','76-revision-v1','','','2020-02-06 21:27:13','2020-02-06 21:27:13','',76,'http://gwendowment.org/wordpress1/2020/02/06/76-revision-v1/',0,'revision','',0),(120,1,'2020-02-06 21:39:12','2020-02-06 21:39:12','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n<p>The George Washington Scholars Endowment</p>\n<p>1785</p>\n<p>Discover and develop genius buried in poverty </p>\n <a href=\"\" target=\"_self\" role=\"button\">\n Inspire Young Minds Now\n </a>\n','Home page','','inherit','closed','closed','','76-revision-v1','','','2020-02-06 21:39:12','2020-02-06 21:39:12','',76,'http://gwendowment.org/wordpress1/2020/02/06/76-revision-v1/',0,'revision','',0),(121,1,'2020-02-06 21:42:54','2020-02-06 21:42:54','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n<p>The George Washington Scholars Endowment</p>\n<p>1785</p>\n<p>Discover and develop genius buried in poverty </p>\n <a href=\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\" target=\"_self\" role=\"button\">\n Inspire Young Minds Now\n </a>\n','Home page','','inherit','closed','closed','','76-revision-v1','','','2020-02-06 21:42:54','2020-02-06 21:42:54','',76,'http://gwendowment.org/wordpress1/2020/02/06/76-revision-v1/',0,'revision','',0),(122,1,'2020-02-06 21:47:27','2020-02-06 21:47:27','\n <p>Contact: info@gwendowment.org</p>\n<p>P. O. Box 2356,</p>\n<p>Detroit, MI 48202</p>\n','GW footer','','inherit','closed','closed','','116-revision-v1','','','2020-02-06 21:47:27','2020-02-06 21:47:27','',116,'http://gwendowment.org/wordpress1/2020/02/06/116-revision-v1/',0,'revision','',0),(123,1,'2020-02-06 22:03:39','2020-02-06 22:03:39','\n <h2>Education – The Birthright of Every Child</h2>\n<p>Every boy and girl born under heaven, of whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</p>\n<p>The very best schools understand that enabling this wonderful process—or this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</p>\n<p>George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</p>\n<p>We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.”</p>\n<p>Faithfully,<br />\nT. Robinson Ahlstrom - Chairman</p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"tr\" itemprop=\"image\" height=\"325\" width=\"434\" title=\"tr\" onerror=\"this.style.display=\'none\'\" />\n','A Word from the Chairman','','inherit','closed','closed','','56-revision-v1','','','2020-02-06 22:03:39','2020-02-06 22:03:39','',56,'http://gwendowment.org/wordpress1/2020/02/06/56-revision-v1/',0,'revision','',0),(124,1,'2020-02-06 22:59:12','2020-02-06 22:59:12','\n <h2>Education – The Birthright of Every Child</h2>\n<hr />\n<p>Every boy and girl born under heaven, <img src=\"http://gwendowment.org/wordpress1/wordpress1/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" /> whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</p>\n<p>The very best schools understand that enabling this wonderful process—or this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</p>\n<p>George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</p>\n<p>We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.” </p>\n<p>Faithfully,<br />\nT. Robinson Ahlstrom - Chairman</p>\n <h4>\"Give children in need a chance at the very best education through GW Scholars Fund and help them become the people that God meant them to be.\"</h4>\n <h3>Donate Now</h3>\n <p>Because a great education full of wonder and awe is the birthright of all. </p>\n <a href=\"\" target=\"_self\" role=\"button\">\n </a>\n','A Word from the Chairman','','inherit','closed','closed','','56-revision-v1','','','2020-02-06 22:59:12','2020-02-06 22:59:12','',56,'http://gwendowment.org/wordpress1/2020/02/06/56-revision-v1/',0,'revision','',0),(125,1,'2020-02-06 23:15:49','2020-02-06 23:15:49','\n <h2>Education – The Birthright of Every Child</h2>\n<hr />\n<p><img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" /></p>\n<p>Every boy and girl born under heaven, whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</p>\n<p>The very best schools understand that enabling this wonderful process—or this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</p>\n<p>George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</p>\n<p>We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.” </p>\n<p>Faithfully,<br />\nT. Robinson Ahlstrom - Chairman</p>\n <h4>\"Give children in need a chance at the very best education through GW Scholars Fund and help them become the people that God meant them to be.\"</h4>\n <h3>Donate Now</h3>\n <p>Because a great education full of wonder and awe is the birthright of all. </p>\n <a href=\"http://gwendowment.org/wordpress1/investment-impact/\" target=\"_self\" role=\"button\">\n Donate\n </a>\n','A Word from the Chairman','','inherit','closed','closed','','56-revision-v1','','','2020-02-06 23:15:49','2020-02-06 23:15:49','',56,'http://gwendowment.org/wordpress1/2020/02/06/56-revision-v1/',0,'revision','',0),(126,1,'2020-02-06 23:18:46','2020-02-06 23:18:46','\n <a href=\"http://gwendowment.org/wordpress1/home-page/\" target=\"_self\" itemprop=\"url\">\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n </a>\n <p>The George Washington Scholars Endowment</p>\n <p>1785</p>\n','Front Page','','inherit','closed','closed','','30-revision-v1','','','2020-02-06 23:18:46','2020-02-06 23:18:46','',30,'http://gwendowment.org/wordpress1/2020/02/06/30-revision-v1/',0,'revision','',0),(127,1,'2020-02-07 00:20:32','2020-02-07 00:20:32','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n<p>The George Washington Scholars Endowment</p>\n<p>1785</p>\n<p>Discover and develop the genius of kids who are living in poverty.</p>\n <a href=\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\" target=\"_self\" role=\"button\">\n Find out how\n </a>\n','Home page','','inherit','closed','closed','','76-revision-v1','','','2020-02-07 00:20:32','2020-02-07 00:20:32','',76,'http://gwendowment.org/wordpress1/2020/02/07/76-revision-v1/',0,'revision','',0),(128,1,'2020-02-07 00:22:29','2020-02-07 00:22:29','\n <p><strong>Quality and Equality</strong></p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\" alt=\"Rockwell-Large\" itemprop=\"image\" height=\"1481\" width=\"2400\" title=\"Rockwell-Large\" onerror=\"this.style.display=\'none\'\" />\n <p>Across the United States, too many K-12 schools are failing too many students. Two out of three eighth-graders can’t read proficiently. Two out of three score below proficient in math. Seventy-five percent of students are not proficient in civics. Nearly three out of four 12th-grade students cannot write proficiently. More than one million American students drop out of school every year and only one in four who do graduate from high school are ready for college in the four core subjects of English, reading, math and science.</p>\n<p>American students now rank 25th in math, 17th in science and 14th in reading compared to students in 27 industrialized countries. Still more troubling is that fact that a longitudinal study of PISA results indicates that America’s high school students are continuing to fall further and further behind.</p>\n<p>And, in America’s K-12 schools, quality is not the only issue. Equality has proven to be an equally elusive goal. According to a 2009 Civil Rights Project report published by the Regents of the University of California, “Fifty-five years after the Brown decision, blacks and Latinos in American schools are more segregated than they have been in four decades.” The results are devastating. For African-American and Hispanic students across the country, dropout rates are close to 40 percent, compared to the national average of 27 percent. Only 4 percent of African American students and 11 percent of Hispanic students who do finish high school are ready for college in their core subjects.</p>\n<p>In fact, access to quality education is a global challenge. It is the next great civil right. In the area of education, many of the 2015 Millennial Development Goals set by the United Nations were not met—especially in Sub-Saharan Africa. According to a UNESCO report published at the September 8th (2014) Conference on Literacy and Sustainable Development, “Poor quality education is leaving a legacy of illiteracy more widespread than previously believed: one in four young people—175 million adolescents—is unable to read a single sentence.</p>\n<p>The Endowment exists solely to “provide direct aid to worthy scholars.” Whether here in the United States or abroad, its mission is to redeem what Thomas Jefferson called, “genius buried in poverty.”</p>\n <table>\n<tbody>\n<tr>\n<td valign=\"right\"><strong>“The Education that is best for the best is the education that is best for all.” </strong></p>\n<p><strong>— Robert Maynard Hutchins</strong></td>\n</tr>\n</tbody>\n</table>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\" alt=\"Robert_Hutchins\" itemprop=\"image\" height=\"239\" width=\"300\" title=\"Robert_Hutchins\" onerror=\"this.style.display=\'none\'\" />\n','Quality & Equality','','inherit','closed','closed','','44-revision-v1','','','2020-02-07 00:22:29','2020-02-07 00:22:29','',44,'http://gwendowment.org/wordpress1/2020/02/07/44-revision-v1/',0,'revision','',0),(129,1,'2020-02-07 00:24:26','2020-02-07 00:24:26','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n<p>The George Washington Scholars Endowment</p>\n<p>1785</p>\n<p>Discover and develop the genius of kids who are living in poverty.</p>\n <a href=\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\" target=\"_self\" role=\"button\">\n Find out how\n </a>\n','Home page','','inherit','closed','closed','','76-revision-v1','','','2020-02-07 00:24:26','2020-02-07 00:24:26','',76,'http://gwendowment.org/wordpress1/2020/02/07/76-revision-v1/',0,'revision','',0),(130,1,'2020-02-07 00:27:22','2020-02-07 00:27:22','\n <p><strong>Investment & Impact</strong></p>\n <p>Replenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”</p>\n<p>Because the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:</p>\n<ul>\n<li>Unusual Assets (such as a vehicle, work of art, or real estate),</li>\n<li>Wills or Trust Bequests,</li>\n<li>Charitable Gift Annuities,</li>\n<li>IRA Rollover Gifts,</li>\n<li>Appreciated Securities,</li>\n<li>The Gift of Life Insurance, and</li>\n<li>A Charitable Remainder Trust.</li>\n</ul>\n<p>Contributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.</p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\" alt=\"Browne_Henriette_-_A_Girl_Writing\" itemprop=\"image\" height=\"2509\" width=\"3198\" title=\"Browne_Henriette_-_A_Girl_Writing\" onerror=\"this.style.display=\'none\'\" />\n <table>\n<tbody>\n<tr>\n<td align=\"center\">\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><a href=\"https://www.paypal.com/donate/?token=pio1_s4_ClNIjZWHy8mP_VNrXBuwLTWzMPKh9GGOBuUp8rEEyVJeW0RVsEap0PZNoiR_pm&country.x=US&locale.x=US\"><input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\" /> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></a></form>\n</td>\n</tr>\n</tbody>\n</table>\n<p> </p>\n <p><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i><br />\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\" alt=\"Eli_Broad\" itemprop=\"image\" height=\"202\" width=\"300\" title=\"Eli_Broad\" onerror=\"this.style.display=\'none\'\" />\n <p><strong>“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.”</strong></p>\n<p><strong>- Eli Broad</strong></p>\n','Investment & Impact','','inherit','closed','closed','','46-revision-v1','','','2020-02-07 00:27:22','2020-02-07 00:27:22','',46,'http://gwendowment.org/wordpress1/2020/02/07/46-revision-v1/',0,'revision','',0),(131,1,'2020-02-07 17:02:12','2020-02-07 17:02:12','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ñ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://gwendowment.org/wordpress1/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','','','2020-02-07 17:02:12','2020-02-07 17:02:12','',2,'http://gwendowment.org/wordpress1/2020/02/07/2-revision-v1/',0,'revision','',0),(132,1,'2020-02-07 17:03:33','2020-02-07 17:03:33',' <h2>Education – The Birthright of Every Child</h2>\r\n<hr />\r\n<p><img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" /></p>\r\n<p>Every boy and girl born under heaven, whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</p>\r\n<p>The very best schools understand that enabling this wonderful process—or this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</p>\r\n<p>George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</p>\r\n<p>We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.” </p>\r\n<p>Faithfully,<br />\r\nT. Robinson Ahlstrom - Chairman</p>\r\n <h4>\"Give children in need a chance at the very best education through GW Scholars Fund and help them become the people that God meant them to be.\"</h4>\r\n <h3>Donate Now</h3>\r\n <p>Because a great education full of wonder and awe is the birthright of all. </p>\r\n <a href=\"http://gwendowment.org/wordpress1/investment-impact/\" target=\"_self\" role=\"button\">\r\n Donate\r\n </a>\r\n','A Word from the Chairman','','inherit','closed','closed','','56-autosave-v1','','','2020-02-07 17:03:33','2020-02-07 17:03:33','',56,'http://gwendowment.org/wordpress1/2020/02/07/56-autosave-v1/',0,'revision','',0),(133,1,'2020-02-07 17:04:41','2020-02-07 17:04:41','\n <h2>Education – The Birthright of Every Child</h2>\n<hr />\n<p><img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" /></p>\n<p>Every boy and girl born under heaven, whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</p>\n<p>The very best schools understand that enabling this wonderful process—or this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</p>\n<p>George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</p>\n<p>We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.” </p>\n<p>Faithfully,<br />\nT. Robinson Ahlstrom - Chairman</p>\n <h4>\"Give children in need a chance at the very best education through GW Scholars Fund and help them become the people that God meant them to be.\"</h4>\n <h3>Donate Now</h3>\n <p>Because a great education full of wonder and awe is the birthright of all. </p>\n <a href=\"http://gwendowment.org/wordpress1/investment-impact/\" target=\"_self\" role=\"button\">\n Donate\n </a>\n','A Word from the Chairman','','inherit','closed','closed','','56-revision-v1','','','2020-02-07 17:04:41','2020-02-07 17:04:41','',56,'http://gwendowment.org/wordpress1/2020/02/07/56-revision-v1/',0,'revision','',0),(134,1,'2020-02-07 17:07:44','2020-02-07 17:07:44','\n <h2>Education – The Birthright of Every Child</h2>\n<hr />\n<p><img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" /></p>\n<p>Every boy and girl born under heaven, whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</p>\n<p>The very best schools understand that enabling this wonderful process—or this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</p>\n<p>George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</p>\n<p>We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.” </p>\n<p>Faithfully,<br />\nT. Robinson Ahlstrom - Chairman</p>\n <h4>\"Give children in need a chance at the very best education through GW Scholars Fund and help them become the people that God meant them to be.\"</h4>\n <h3>Donate Now</h3>\n <p>Because a great education full of wonder and awe is the birthright of all. </p>\n <a href=\"http://gwendowment.org/wordpress1/investment-impact/\" target=\"_self\" role=\"button\">\n Donate\n </a>\n','A Word from the Chairman','','inherit','closed','closed','','56-revision-v1','','','2020-02-07 17:07:44','2020-02-07 17:07:44','',56,'http://gwendowment.org/wordpress1/2020/02/07/56-revision-v1/',0,'revision','',0),(135,1,'2020-02-07 17:22:46','2020-02-07 17:22:46','\n <h2></h2>\n<h2></h2>\n <h2>Investment & Impact</h2>\n<hr />\n<p>Replenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”</p>\n<p>Because the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:</p>\n<ul>\n<li>Unusual Assets (such as a vehicle, work of art, or real estate),</li>\n<li>Wills or Trust Bequests,</li>\n<li>Charitable Gift Annuities,</li>\n<li>IRA Rollover Gifts,</li>\n<li>Appreciated Securities,</li>\n<li>The Gift of Life Insurance, and</li>\n<li>A Charitable Remainder Trust.</li>\n</ul>\n<p>Contributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.</p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\" alt=\"Browne_Henriette_-_A_Girl_Writing\" itemprop=\"image\" height=\"2509\" width=\"3198\" title=\"Browne_Henriette_-_A_Girl_Writing\" onerror=\"this.style.display=\'none\'\" />\n <table>\n<tbody>\n<tr>\n<td align=\"center\">\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><a href=\"https://www.paypal.com/donate/?token=pio1_s4_ClNIjZWHy8mP_VNrXBuwLTWzMPKh9GGOBuUp8rEEyVJeW0RVsEap0PZNoiR_pm&country.x=US&locale.x=US\"><input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\" /> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></a></form>\n</td>\n</tr>\n</tbody>\n</table>\n<p> </p>\n <p><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i><br />\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\" alt=\"Eli_Broad\" itemprop=\"image\" height=\"202\" width=\"300\" title=\"Eli_Broad\" onerror=\"this.style.display=\'none\'\" />\n <p><strong>“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.”</strong></p>\n<p><strong>- Eli Broad</strong></p>\n','Investment & Impact','','inherit','closed','closed','','46-revision-v1','','','2020-02-07 17:22:46','2020-02-07 17:22:46','',46,'http://gwendowment.org/wordpress1/2020/02/07/46-revision-v1/',0,'revision','',0),(136,1,'2020-02-07 17:46:10','2020-02-07 17:46:10','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\" alt=\"Rockwell-Large\" itemprop=\"image\" height=\"1481\" width=\"2400\" title=\"Rockwell-Large\" onerror=\"this.style.display=\'none\'\" />\n <h2>Quality and Equality</h2>\n<hr />\n<p>Across the United States, too many K-12 schools are failing too many students. Two out of three eighth-graders can’t read proficiently. Two out of three score below proficient in math. Seventy-five percent of students are not proficient in civics. Nearly three out of four 12th-grade students cannot write proficiently. More than one million American students drop out of school every year and only one in four who do graduate from high school are ready for college in the four core subjects of English, reading, math and science.<br />\n<br />\nAmerican students now rank 25th in math, 17th in science and 14th in reading compared to students in 27 industrialized countries. Still more troubling is that fact that a longitudinal study of PISA results indicates that America’s high school students are continuing to fall further and further behind.</p>\n<p>And, in America’s K-12 schools, quality is not the only issue. Equality has proven to be an equally elusive goal. According to a 2009 Civil Rights Project report published by the Regents of the University of California, “Fifty-five years after the Brown decision, blacks and Latinos in American schools are more segregated than they have been in four decades.” The results are devastating. For African-American and Hispanic students across the country, dropout rates are close to 40 percent, compared to the national average of 27 percent. Only 4 percent of African American students and 11 percent of Hispanic students who do finish high school are ready for college in their core subjects.</p>\n<p>In fact, access to quality education is a global challenge. It is the next great civil right. In the area of education, many of the 2015 Millennial Development Goals set by the United Nations were not met—especially in Sub-Saharan Africa. According to a UNESCO report published at the September 8th (2014) Conference on Literacy and Sustainable Development, “Poor quality education is leaving a legacy of illiteracy more widespread than previously believed: one in four young people—175 million adolescents—is unable to read a single sentence.</p>\n<p>The Endowment exists solely to “provide direct aid to worthy scholars.” Whether here in the United States or abroad, its mission is to redeem what Thomas Jefferson called, “genius buried in poverty.”</p>\n <p> </p>\n<table>\n<tbody>\n<tr>\n<td valign=\"right\">“The Education that is best for the best is the education that is best for all.” </p>\n<p>— Robert Maynard Hutchins</td>\n</tr>\n</tbody>\n</table>\n<p> </p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\" alt=\"Robert_Hutchins\" itemprop=\"image\" height=\"239\" width=\"300\" title=\"Robert_Hutchins\" onerror=\"this.style.display=\'none\'\" />\n','Quality & Equality','','inherit','closed','closed','','44-revision-v1','','','2020-02-07 17:46:10','2020-02-07 17:46:10','',44,'http://gwendowment.org/wordpress1/2020/02/07/44-revision-v1/',0,'revision','',0),(137,1,'2020-02-07 17:48:31','2020-02-07 17:48:31','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Rockwell-Large.jpg\" alt=\"Rockwell-Large\" itemprop=\"image\" height=\"1481\" width=\"2400\" title=\"Rockwell-Large\" onerror=\"this.style.display=\'none\'\" />\n <h2>Quality and Equality</h2>\n<hr />\n<p>Across the United States, too many K-12 schools are failing too many students. Two out of three eighth-graders can’t read proficiently. Two out of three score below proficient in math. Seventy-five percent of students are not proficient in civics. Nearly three out of four 12th-grade students cannot write proficiently. More than one million American students drop out of school every year and only one in four who do graduate from high school are ready for college in the four core subjects of English, reading, math and science.<br />\n<br />\nAmerican students now rank 25th in math, 17th in science and 14th in reading compared to students in 27 industrialized countries. Still more troubling is that fact that a longitudinal study of PISA results indicates that America’s high school students are continuing to fall further and further behind.</p>\n<p>And, in America’s K-12 schools, quality is not the only issue. Equality has proven to be an equally elusive goal. According to a 2009 Civil Rights Project report published by the Regents of the University of California, “Fifty-five years after the Brown decision, blacks and Latinos in American schools are more segregated than they have been in four decades.” The results are devastating. For African-American and Hispanic students across the country, dropout rates are close to 40 percent, compared to the national average of 27 percent. Only 4 percent of African American students and 11 percent of Hispanic students who do finish high school are ready for college in their core subjects.</p>\n<p>In fact, access to quality education is a global challenge. It is the next great civil right. In the area of education, many of the 2015 Millennial Development Goals set by the United Nations were not met—especially in Sub-Saharan Africa. According to a UNESCO report published at the September 8th (2014) Conference on Literacy and Sustainable Development, “Poor quality education is leaving a legacy of illiteracy more widespread than previously believed: one in four young people—175 million adolescents—is unable to read a single sentence.</p>\n<p>The Endowment exists solely to “provide direct aid to worthy scholars.” Whether here in the United States or abroad, its mission is to redeem what Thomas Jefferson called, “genius buried in poverty.”</p>\n <p> </p>\n<table>\n<tbody>\n<tr>\n<td valign=\"right\">“The Education that is best for the best is the education that is best for all.” </p>\n<p>— Robert Maynard Hutchins</td>\n</tr>\n</tbody>\n</table>\n<p> </p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Robert_Hutchins-300x239.jpg\" alt=\"Robert_Hutchins\" itemprop=\"image\" height=\"239\" width=\"300\" title=\"Robert_Hutchins\" onerror=\"this.style.display=\'none\'\" />\n','Quality & Equality','','inherit','closed','closed','','44-revision-v1','','','2020-02-07 17:48:31','2020-02-07 17:48:31','',44,'http://gwendowment.org/wordpress1/2020/02/07/44-revision-v1/',0,'revision','',0),(138,1,'2020-02-07 18:08:26','2020-02-07 18:08:26','\n <p> </p>\n<h2><strong>Leadership & Teamwork</strong></h2>\n<h4> <b>Board of Governors and Visitors</b></h4>\n<hr />\n<p>T. Robinson Ahlstrom, Bloomfield Hills, MI<br />\n<i>Chairman & CEO, GW Scholars Endowment<br />\nChair, Executive Committee</i></p>\n<p>James Caraher, Chicago, IL<br />\n<i>Principal, Caraher Corporation<br />\nChair, Real Estate Committee</i></p>\n<p>Dean A. Christiansen, New York, NY<br />\n<i>Principal, Acacia Capital</i></p>\n<p>George Cranmer, Oxfordshire, England<br />\n<i>Director, Cranmer Lawrence, LTD</i></p>\n<p>Jerome F. Dausman, Hamilton, NJ<br />\n<i>Director of Analytics, The Detroit Latin School<br />\nInterim Treasurer</i></p>\n<p>Paul Evans, Cincinnati, OH<br />\n<i>Director of Investments, Rosetta Partners</i></p>\n<p>Ronald Gardhouse<br />\n<i>V.P. Chrysler Corporation (Ret.)<br />\nChair, Budget & Finance Committee</i></p>\n<p>Jae Gardner, New York, NY<br />\n<i>Founder & President, The Ivy Key</i></p>\n<p>Dr. Arnold A. Kummerow<br />\n<i>Superintendent, Armada (MI) Area Schools (Ret.)</i></p>\n<p>John Lind, Huntington Beach, CA<br />\n<i>President, Lind & Associates<br />\nChair, Enterprise & Development Committee</i></p>\n<p>Andrew Lucaciu, Washington, DC<br />\n<i>Senior Program Analyst, F.E.M.A.</i></p>\n<p>F. Landey Patton, Lexington, VA<br />\n<i>Innkeeper, The Abigail Inn</i></p>\n<p>Kymberly Peer, Bloomfield Hills, MI<br />\n<i>Buyer/Director of Operations, Sposa Bella Couture Enterprise & Development Committee</i></p>\n<p>Dr. James Tooley, Manchester, England<br />\n<i>Professor of Education Policy, Newcastle University</i></p>\n<p>Curt Welling, Norwich, VT<br />\n<i>Senior Fellow, Tuck School of Management, Dartmouth College</i></p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Biglin_Brothers_Racing_1148x294-e1580148148746.jpg\" alt=\"Biglin_Brothers_Racing_1148x294\" itemprop=\"image\" height=\"642\" width=\"1145\" title=\"Biglin_Brothers_Racing_1148x294\" onerror=\"this.style.display=\'none\'\" />\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Vince_Lombardi.jpg\" alt=\"“People who work together will win, whether it be against complex football defenses, or the problems of modern society.” - Vince Lombardi\" itemprop=\"image\" height=\"225\" width=\"300\" title=\"Vince_Lombardi\" onerror=\"this.style.display=\'none\'\" />\n <p>\"People who work together will win, whether it be against complex football defenses, or the problems of modern society.\"</strong></p>\n','Leadership & Teamwork','','inherit','closed','closed','','39-revision-v1','','','2020-02-07 18:08:26','2020-02-07 18:08:26','',39,'http://gwendowment.org/wordpress1/2020/02/07/39-revision-v1/',0,'revision','',0),(139,1,'2020-02-07 18:21:34','2020-02-07 18:21:34','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n<p>The George Washington Scholars Endowment</p>\n<p>1785</p>\n<p>Discover and develop genius in children who are living in poverty.</p>\n <a href=\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\" target=\"_self\" role=\"button\">\n Find out how\n </a>\n','Home page','','inherit','closed','closed','','76-revision-v1','','','2020-02-07 18:21:34','2020-02-07 18:21:34','',76,'http://gwendowment.org/wordpress1/2020/02/07/76-revision-v1/',0,'revision','',0),(140,1,'2020-02-07 18:23:17','2020-02-07 18:23:17','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n<p>The George Washington Scholars Endowment</p>\n<p>1785</p>\n<p>Develop genius in children who are living in poverty.</p>\n <a href=\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\" target=\"_self\" role=\"button\">\n Find out how\n </a>\n','Home page','','inherit','closed','closed','','76-revision-v1','','','2020-02-07 18:23:17','2020-02-07 18:23:17','',76,'http://gwendowment.org/wordpress1/2020/02/07/76-revision-v1/',0,'revision','',0),(141,1,'2020-02-07 18:31:59','2020-02-07 18:31:59','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n<p>The George Washington Scholars Endowment</p>\n<p>1785</p>\n<p>Develop genius in children who live in poverty.</p>\n <a href=\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\" target=\"_self\" role=\"button\">\n Find out how\n </a>\n','Home page','','inherit','closed','closed','','76-revision-v1','','','2020-02-07 18:31:59','2020-02-07 18:31:59','',76,'http://gwendowment.org/wordpress1/2020/02/07/76-revision-v1/',0,'revision','',0),(142,1,'2020-02-07 18:38:43','2020-02-07 18:38:43','\n <h2></h2>\n<h2></h2>\n <h2>Investment & Impact</h2>\n<hr />\n<p>Replenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”</p>\n<p>Because the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:</p>\n<ul>\n<li>Unusual Assets (such as a vehicle, work of art, or real estate),</li>\n<li>Wills or Trust Bequests,</li>\n<li>Charitable Gift Annuities,</li>\n<li>IRA Rollover Gifts,</li>\n<li>Appreciated Securities,</li>\n<li>The Gift of Life Insurance, and</li>\n<li>A Charitable Remainder Trust.</li>\n</ul>\n<p>Contributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.</p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\" alt=\"Browne_Henriette_-_A_Girl_Writing\" itemprop=\"image\" height=\"2509\" width=\"3198\" title=\"Browne_Henriette_-_A_Girl_Writing\" onerror=\"this.style.display=\'none\'\" />\n <table>\n<tbody>\n<tr>\n<td align=\"center\">\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><a href=\"https://www.paypal.com/donate/?token=pio1_s4_ClNIjZWHy8mP_VNrXBuwLTWzMPKh9GGOBuUp8rEEyVJeW0RVsEap0PZNoiR_pm&country.x=US&locale.x=US\"><input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\" /> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></a></form>\n</td>\n</tr>\n</tbody>\n</table>\n<p> </p>\n <p><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i><br />\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\" alt=\"Eli_Broad\" itemprop=\"image\" height=\"202\" width=\"300\" title=\"Eli_Broad\" onerror=\"this.style.display=\'none\'\" />\n <p>“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.”</p>\n<p>- Eli Broad </p>\n','Investment & Impact','','inherit','closed','closed','','46-revision-v1','','','2020-02-07 18:38:43','2020-02-07 18:38:43','',46,'http://gwendowment.org/wordpress1/2020/02/07/46-revision-v1/',0,'revision','',0),(143,1,'2020-02-07 21:59:19','2020-02-07 21:59:19','\n <h2>Education – The Birthright of Every Child</h2>\n<hr />\n<p><img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" /></p>\n<p>Every boy and girl born under heaven, whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</p>\n<p>The very best schools understand that enabling this wonderful process—or this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</p>\n<p>George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</p>\n<p>We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.” </p>\n<p>Faithfully,<br />\nT. Robinson Ahlstrom - Chairman</p>\n <h4>\"Give children in need a chance at the very best education through GW Scholars Fund and help them become the people that God meant them to be.\"</h4>\n <h3>Donate Now</h3>\n <p>Because a great education, full of wonder and awe, is the birthright of all. </p>\n <a href=\"http://gwendowment.org/wordpress1/investment-impact/\" target=\"_self\" role=\"button\">\n Donate\n </a>\n','A Word from the Chairman','','inherit','closed','closed','','56-revision-v1','','','2020-02-07 21:59:19','2020-02-07 21:59:19','',56,'http://gwendowment.org/wordpress1/2020/02/07/56-revision-v1/',0,'revision','',0),(144,1,'2020-02-07 22:06:38','2020-02-07 22:06:38','\n <h2></h2>\n<h2></h2>\n <h2>Investment & Impact</h2>\n<hr />\n<p>Replenishing the Endowment will require the active engagement and financial support of visionary individuals, family foundations and socially responsible institutions who share Washington’s belief that “nothing is more important than the education of youth.”</p>\n<p>Because the Endowment’s work is limited to providing K-12 scholarships to promising youth who could not otherwise access a classical education, there are significant naming opportunities for those who wish to make legacy gifts. Such legacy gifts to the Endowment can be in the form of:</p>\n<ul>\n<li>Unusual Assets (such as a vehicle, work of art, or real estate),</li>\n<li>Wills or Trust Bequests,</li>\n<li>Charitable Gift Annuities,</li>\n<li>IRA Rollover Gifts,</li>\n<li>Appreciated Securities,</li>\n<li>The Gift of Life Insurance, and</li>\n<li>A Charitable Remainder Trust.</li>\n</ul>\n<p>Contributions of any amount can be made directly through the link below. The address requested with your donation is used only for the year-end charitable notification you will receive, which is required by the IRS.</p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Browne_Henriette_-_A_Girl_Writing.jpg\" alt=\"Browne_Henriette_-_A_Girl_Writing\" itemprop=\"image\" height=\"2509\" width=\"3198\" title=\"Browne_Henriette_-_A_Girl_Writing\" onerror=\"this.style.display=\'none\'\" />\n <p><i>The George Washington Scholars Endowment is a registered 501(c)(3) charitable organization.</i><br />\nFor further information, contact the Endowment at <a href=\"mailto:info@gwendowment.org?Subject=Inquiry%20from%20Web\" target=\"_top\">info@gwendowment.org</a></p>\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/Eli_Broad-300x202.jpg\" alt=\"Eli_Broad\" itemprop=\"image\" height=\"202\" width=\"300\" title=\"Eli_Broad\" onerror=\"this.style.display=\'none\'\" />\n <p>“Philanthropy, to me, is being engaged, not only with your resources but getting people and yourself really involved and doing things that haven\'t been done before.”</p>\n<p>- Eli Broad </p>\n','Investment & Impact','','inherit','closed','closed','','46-revision-v1','','','2020-02-07 22:06:38','2020-02-07 22:06:38','',46,'http://gwendowment.org/wordpress1/2020/02/07/46-revision-v1/',0,'revision','',0),(145,1,'2020-02-07 22:17:26','2020-02-07 22:17:26','\n <h2>Education – The Birthright of Every Child</h2>\n<hr />\n<p><img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" /></p>\n<p>Every boy and girl born under heaven, of whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</p>\n<p>The very best schools understand that enabling this wonderful process—or this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</p>\n<p>George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</p>\n<p>We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.” </p>\n<p>Faithfully,<br />\nT. Robinson Ahlstrom - Chairman</p>\n <h4>\"Give children in need a chance at the very best education through GW Scholars Fund and help them become the people that God meant them to be.\"</h4>\n <h3>Donate Now</h3>\n <p>Because a great education, full of wonder and awe, is the birthright of all. </p>\n <a href=\"http://gwendowment.org/wordpress1/investment-impact/\" target=\"_self\" role=\"button\">\n Donate\n </a>\n','A Word from the Chairman','','inherit','closed','closed','','56-revision-v1','','','2020-02-07 22:17:26','2020-02-07 22:17:26','',56,'http://gwendowment.org/wordpress1/2020/02/07/56-revision-v1/',0,'revision','',0),(146,1,'2020-02-07 22:37:47','2020-02-07 22:37:47','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n <p><em>Discover and develop genius buried in poverty.</em></p>\n <a href=\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\" target=\"_self\" role=\"button\">\n Find out how\n </a>\n','Home page','','inherit','closed','closed','','76-revision-v1','','','2020-02-07 22:37:47','2020-02-07 22:37:47','',76,'http://gwendowment.org/wordpress1/2020/02/07/76-revision-v1/',0,'revision','',0),(147,1,'2020-02-07 22:42:55','2020-02-07 22:42:55','\n <img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2019/12/gwselogo.png\" alt=\"gwselogo\" itemprop=\"image\" height=\"83\" width=\"112\" title=\"gwselogo\" onerror=\"this.style.display=\'none\'\" />\n <p><em>Discover and develop genius buried in poverty.</em></p>\n <a href=\"http://gwendowment.org/wordpress1/a-word-from-the-chairman/\" target=\"_self\" role=\"button\">\n Find out how\n </a>\n','Home page','','inherit','closed','closed','','76-revision-v1','','','2020-02-07 22:42:55','2020-02-07 22:42:55','',76,'http://gwendowment.org/wordpress1/2020/02/07/76-revision-v1/',0,'revision','',0),(148,1,'2020-02-07 22:46:49','2020-02-07 22:46:49','\n <h2>Education – The Birthright of Every Child</h2>\n<hr />\n<p><img src=\"http://gwendowment.org/wordpress1/wp-content/uploads/2020/01/tr.png\" alt=\"\" width=\"434\" height=\"325\" /></p>\n<p>Every boy and girl born under heaven, of whatever parentage and into whatever circumstance, deserves a chance to be the person God made them to be. They deserve the pavilion of childhood in which they can laugh and run and sing and play their merry games. They deserve a season before the crushing duties of maturity during which they can explore the external world, cultivate the world within, and enter fully into the mystery and beauty of a life well lived.</p>\n<p>The very best schools understand that enabling this wonderful process—this process of wonder—is what education is all about. They are well assured that the genius is already there. They see their task as drawing it out. Aware that the Latin word “educate” is ducere, which literally means to “draw out,” they do not merely drill in. They draw out. They touch the Aeolian strings, enabling Truth, Beauty and Goodness to find voice in a new generation.</p>\n<p>George Washington understood this when he established the educational endowment which now bears his name. Today, after a long hiatus, his work continues. It is exciting work. It is work essential to the maintaince of our national liberties. It is work that that can and must extend the blessings of classical learning to the ends of the earth.</p>\n<p>We are just getting started. In the words of Robert Frost, we have “miles to go and promises to keep.” </p>\n<p>Faithfully,<br />\nT. Robinson Ahlstrom - Chairman</p>\n <h4>\"Give children in need a chance at the very best education through GW Scholars Fund and help them become the people that God meant them to be.\"</h4>\n <h3>Donate Now</h3>\n <p>Because a great education, full of wonder and awe, is the birthright of all. </p>\n <a href=\"http://gwendowment.org/wordpress1/investment-impact/\" target=\"_self\" role=\"button\">\n Donate\n </a>\n','A Word from the Chairman','','inherit','closed','closed','','56-revision-v1','','','2020-02-07 22:46:49','2020-02-07 22:46:49','',56,'http://gwendowment.org/wordpress1/2020/02/07/56-revision-v1/',0,'revision','',0),(149,1,'2020-02-14 16:31:03','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2020-02-14 16:31:03','0000-00-00 00:00:00','',0,'http://gwendowment.org/wordpress1/?p=149',0,'post','',0),(150,1,'2020-02-14 17:37:57','2020-02-14 17:37:57','','','','publish','closed','closed','','150','','','2020-02-14 17:37:57','2020-02-14 17:37:57','',0,'http://gwendowment.org/wordpress1/2020/02/14/150/',0,'wpplugin_don_button','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_smush_dir_images` -- DROP TABLE IF EXISTS `wp_smush_dir_images`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_smush_dir_images` ( `id` mediumint(9) NOT NULL AUTO_INCREMENT, `path` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `path_hash` char(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `resize` varchar(55) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `lossy` varchar(55) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `error` varchar(55) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `image_size` int(10) unsigned DEFAULT NULL, `orig_size` int(10) unsigned DEFAULT NULL, `file_time` int(10) unsigned DEFAULT NULL, `last_scan` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `meta` text COLLATE utf8mb4_unicode_520_ci, UNIQUE KEY `id` (`id`), UNIQUE KEY `path_hash` (`path_hash`), KEY `image_size` (`image_size`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_smush_dir_images` -- LOCK TABLES `wp_smush_dir_images` WRITE; /*!40000 ALTER TABLE `wp_smush_dir_images` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_smush_dir_images` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_relationships` -- LOCK TABLES `wp_term_relationships` WRITE; /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; INSERT INTO `wp_term_relationships` VALUES (1,1,0),(51,2,0),(52,2,0),(53,2,0),(54,2,0),(58,2,0),(60,3,0),(106,3,0),(110,3,0); /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_taxonomy` -- DROP TABLE IF EXISTS `wp_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_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=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_taxonomy` -- LOCK TABLES `wp_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'nav_menu','',0,5),(3,3,'fl-builder-template-type','',0,3); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_termmeta` -- DROP TABLE IF EXISTS `wp_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_termmeta` -- LOCK TABLES `wp_termmeta` WRITE; /*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_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=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_terms` -- LOCK TABLES `wp_terms` WRITE; /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'main menu','main-menu',0),(3,'layout','layout',0); /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_usermeta` -- DROP TABLE IF EXISTS `wp_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_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=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_usermeta` -- LOCK TABLES `wp_usermeta` WRITE; /*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','jducheny'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers','wp496_privacy,theme_editor_notice'),(15,1,'default_password_nag',''),(16,1,'show_welcome_panel','1'),(18,1,'wp_dashboard_quick_press_last_post_id','149'),(19,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"154.27.56.0\";}'),(20,1,'wp_user-settings','imgsize=full&libraryContent=browse&editor=html&hidetb=1&editor_plain_text_paste_warning=2'),(21,1,'wp_user-settings-time','1581037331'),(22,1,'_fl_builder_launched','1'),(23,1,'fl_builder_user_settings','a:3:{s:4:\"skin\";s:5:\"light\";s:8:\"lightbox\";a:4:{s:5:\"width\";s:3:\"380\";s:6:\"height\";s:3:\"500\";s:3:\"top\";s:5:\"172px\";s:4:\"left\";s:6:\"1354px\";}s:6:\"pinned\";a:2:{s:5:\"width\";s:3:\"380\";s:8:\"position\";s:0:\"\";}}'),(25,1,'session_tokens','a:1:{s:64:\"9fcf2f6cecad88401753cc231fb156158e2587bba92a7ef31bbf52c560684d9c\";a:4:{s:10:\"expiration\";i:1581870658;s:2:\"ip\";s:13:\"154.27.56.120\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36\";s:5:\"login\";i:1581697858;}}'),(26,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\";}'),(27,1,'metaboxhidden_nav-menus','a:3:{i:0;s:33:\"add-post-type-fl-builder-template\";i:1;s:12:\"add-post_tag\";i:2;s:32:\"add-fl-builder-template-category\";}'),(28,1,'nav_menu_recently_edited','2'),(29,1,'closedpostboxes_fl-theme-layout','a:0:{}'),(30,1,'metaboxhidden_fl-theme-layout','a:1:{i:0;s:7:\"slugdiv\";}'); /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_users` -- DROP TABLE IF EXISTS `wp_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_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=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_users` -- LOCK TABLES `wp_users` WRITE; /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; INSERT INTO `wp_users` VALUES (1,'jducheny','$P$BnnJS8EwU0Lgr8BuPzBLdgTj41.mCT1','jducheny','jeremypducheny@gmail.com','','2018-02-06 17:51:13','',0,'jducheny'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database '1_03f1377_0' -- /*!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 2020-08-20 4:58:57